Files
opentf/config/test-fixtures/prevent-destroy-string.tf
2015-06-07 22:04:23 -07:00

11 lines
156 B
HCL

resource "aws_instance" "web" {
ami = "foo"
lifecycle {
prevent_destroy = "true"
}
}
resource "aws_instance" "bar" {
ami = "foo"
}