Skip to content

Commit

Permalink
Belgium: define TFE var alert_email_addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Jan 15, 2024
1 parent fef8765 commit 59a60c0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tf-workspace/tfe.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ resource "tfe_variable" "sre_email" {
sensitive = false
}

resource "tfe_variable" "alert_email_addresses" {
variable_set_id = tfe_variable_set.environments.id

category = "terraform"
key = "alert_email_addresses"
value = jsonencode(var.sre_email_addresses)
hcl = true
sensitive = false
}

resource "tfe_variable" "gcp_shared_infra_project_id" {
variable_set_id = tfe_variable_set.environments.id

Expand Down

0 comments on commit 59a60c0

Please sign in to comment.