mirror of
https://github.com/opentofu/opentofu.git
synced 2026-02-13 07:43:53 -05:00
16 lines
226 B
HCL
16 lines
226 B
HCL
variable "foo" {
|
|
default = "bar"
|
|
}
|
|
|
|
variable "snack" {
|
|
default = "popcorn"
|
|
}
|
|
|
|
variable "secret_snack" {
|
|
default = "seaweed snacks"
|
|
sensitive = true
|
|
}
|
|
|
|
locals {
|
|
snack_bar = [var.snack, var.secret_snack]
|
|
}
|