opentofu/terraform/test-fixtures/graph-diff-create-before/main.tf
2014-09-29 15:20:02 -07:00

9 lines
128 B
HCL

provider "aws" {}
resource "aws_instance" "bar" {
ami = "abc"
lifecycle {
create_before_destroy = true
}
}