Locals Block
The locals
block allows defining local variables for the project. Note locals are only evaluated within of the scope of the project. Variables defined in the locals
block can be used as regular variables (using the $<identifier>
syntax).
Example Usage
locals {
app_name = "terrabuild"
}
Last updated on