Added content for terraform local values page in terraform roadmap. (#7060)

pull/7064/head
Kavish Baghel 1 month ago committed by GitHub
parent 52d0fffaab
commit f81783ff9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      src/data/roadmaps/terraform/content/local-values@1mFih8uFs3Lc-1PLgwiAU.md

@ -1 +1,8 @@
# Local Values
# Local Values
Local values can be understood as a name assigned to any expression to use it multiple times directly by the name in your terraform module. Local values are referred to as locals and can be declared using the `locals` block. Local values can be a literal constants, resource attributes, variables, or other local values. Local values are helpful to define expressions or values that you need to use multiple times in the module as it allows the value to be updated easily just by updating the local value. A local value can be accessed using the `local` argument like `local.<value_name>`.
Learn more from the following resources:
- [@official@Local Values](https://developer.hashicorp.com/terraform/language/values/locals)
- [@Article@Terraform Locals](https://spacelift.io/blog/terraform-locals)

Loading…
Cancel
Save