Home > Mobile >  Locals in Terraform
Locals in Terraform

Time:01-05

I have a local statement that I need to create it on the locals:

location = local.basic["local"].region

How this statement is translated in locals?

CodePudding user response:

It will be something like below :

locals {
  basic={
    local={
      region="eastus"
    }
  }
}
output "name" {
  value=local.basic["local"].region
}

Output:

enter image description here

  •  Tags:  
  • Related