From e0dd727f1527835c7518782bd3a99b3bcc1c998f Mon Sep 17 00:00:00 2001 From: Daniel da Silva Andrade Date: Thu, 17 Aug 2023 14:49:30 -0300 Subject: [PATCH] fix terraform fmt lint issue --- 2-environments/modules/env_baseline/variables.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/2-environments/modules/env_baseline/variables.tf b/2-environments/modules/env_baseline/variables.tf index f4d09c3a3..e22680d1d 100644 --- a/2-environments/modules/env_baseline/variables.tf +++ b/2-environments/modules/env_baseline/variables.tf @@ -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 = {} }