Difference between revisions of "Terraform local values"
Jump to navigation
Jump to search
Line 48: | Line 48: | ||
== See also == | == See also == | ||
+ | * {{tf locals}} | ||
* {{Terraform blocks}} | * {{Terraform blocks}} | ||
* {{Terraform variables}} | * {{Terraform variables}} | ||
− | |||
[[Category:Terraform]] | [[Category:Terraform]] |
Revision as of 17:56, 29 March 2023
https://www.terraform.io/language/values/locals
A local value can only be accessed in expressions within the module where it was declared.
Contents
Examples
locals { environment = "prod" 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 } }
locals { name = "example-${replace(basename(path.cwd), "_", "-")}" region = "eu-west-1" tags = { Owner = "user" Environment = "dev" } }
Errors
Related
var.
local.
module.
path.
- Terraform resource: random password
- Terraform: Meta-Arguments
- Terragrunt: locals
count = local.create_node_sg ? 1 : 0
See also
Advertising: