Skip to content

Commit

Permalink
fix terraform fmt lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cit committed Aug 17, 2023
1 parent 4b65478 commit e0dd727
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 2-environments/modules/env_baseline/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ variable "project_budget" {
alert_pubsub_topic: The name of the Cloud Pub/Sub topic where budget related messages will be published, in the form of `projects/{project_id}/topics/{topic_id}`.
EOT
type = object({
monitoring_budget_amount = optional(number, 1000)
monitoring_alert_spent_percents = optional(list(number), [0.5, 0.75, 0.9, 0.95])
monitoring_alert_pubsub_topic = optional(string, null)
secret_budget_amount = optional(number, 1000)
secret_alert_spent_percents = optional(list(number), [0.5, 0.75, 0.9, 0.95])
secret_alert_pubsub_topic = optional(string, null)
monitoring_budget_amount = optional(number, 1000)
monitoring_alert_spent_percents = optional(list(number), [0.5, 0.75, 0.9, 0.95])
monitoring_alert_pubsub_topic = optional(string, null)
secret_budget_amount = optional(number, 1000)
secret_alert_spent_percents = optional(list(number), [0.5, 0.75, 0.9, 0.95])
secret_alert_pubsub_topic = optional(string, null)
})
default = {}
}
Expand Down

0 comments on commit e0dd727

Please sign in to comment.