opentofu/terraform/test-fixtures/graph-diff-create-before/main.tf

9 lines
128 B
Terraform
Raw Normal View History

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