Difference between revisions of "Terraform local values"

From wikieduonline
Jump to navigation Jump to search
Line 9: Line 9:
 
   service_name = "forum"
 
   service_name = "forum"
 
   owner        = "Community Team"
 
   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
 +
  }
 
  }
 
  }
  

Revision as of 19:59, 27 February 2022

Advertising: