Difference between revisions of "Terraform: for each"

From wikieduonline
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
     ignore_changes = [value]
 
     ignore_changes = [value]
 
   }
 
   }
 +
}
 +
 +
 +
 +
resource "opsgenie_user" "main" {
 +
  [[for_each]] = [[local.]]myusers
 +
 +
  username  = "${each.key}@yourdomain.com"
 +
  full_name = [[each.]]value.name
 +
  role      = each.value.role
 +
  timezone  = each.value.timezone
 
  }
 
  }
  
Line 37: Line 48:
 
== See also ==
 
== See also ==
 
* {{for_each}}
 
* {{for_each}}
 +
* {{for}}
 
* {{tf functions}}
 
* {{tf functions}}
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Latest revision as of 06:50, 12 June 2024

for_each ref

Examples[edit]

Official examples[edit]

resource "azurerm_resource_group" "rg" {
  for_each = {
    a_group = "eastus"
    another_group = "westus2"
  }
  name     = each.key
  location = each.value
}


resource "aws_ssm_parameter" "secret" {
  for_each    = toset(var.secrets)
  name        = each.key
  description = each.key
  type        = "SecureString"
  value       = "1"

  lifecycle {
    ignore_changes = [value]
  }
}


resource "opsgenie_user" "main" {
  for_each = local.myusers 

  username  = "${each.key}@yourdomain.com"
  full_name = each.value.name
  role      = each.value.role
  timezone  = each.value.timezone
}

Errors[edit]

Related[edit]

See also[edit]

Advertising: