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/command/testdata/show-json-actions/main.tf

30 lines
414 B

provider "test" {
region = "somewhere"
}
variable "test_var" {
default = "bar"
}
action "test_action" "hello" {
count = 3
config {
attr = "Hello, World #${count.index}!"
}
}
resource "test_instance" "test" {
ami = var.test_var
lifecycle {
action_trigger {
events = [before_create]
actions = [action.test_action.hello[0]]
}
}
}
output "test" {
value = var.test_var
}