You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackruntime/testdata/mainbundle/test/plan-variable-defaults/plan-variable-default.tfcom...

32 lines
398 B

variable "beep" {
type = string
default = "BEEP"
}
output "beep" {
type = string
value = var.beep
}
stack "specified" {
source = "./child"
inputs = {
boop = var.beep
}
}
stack "defaulted" {
source = "./child"
inputs = {}
}
output "specified" {
type = string
value = stack.specified.result
}
output "defaulted" {
type = string
value = stack.defaulted.result
}