Difference between revisions of "Terraform local values"

From wikieduonline
Jump to navigation Jump to search
Line 13: Line 13:
 
  locals {
 
  locals {
 
   # Ids for multiple sets of EC2 instances, merged together
 
   # Ids for multiple sets of EC2 instances, merged together
   instance_ids = concat(aws_instance.blue.*.id, aws_instance.green.*.id)
+
   instance_ids = [[concat]](aws_instance.blue.*.id, aws_instance.green.*.id)
 
  }
 
  }
 
   
 
   

Revision as of 12:43, 7 June 2022

https://www.terraform.io/language/values/locals

locals terraform block

A local value can only be accessed in expressions within the module where it was declared.

Examples

locals {
  service_name = "forum"
  owner        = "Community Team"
}
locals {
 # Ids for multiple sets of EC2 instances, merged together
 instance_ids = concat(aws_instance.blue.*.id, aws_instance.green.*.id)
}

locals {
  # Common tags to be assigned to all resources
  common_tags = {
    Service = local.service_name
    Owner   = local.owner
  }
}

Related

See also

Advertising: