mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-21 08:00:49 -05:00
9 lines
128 B
HCL
9 lines
128 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_instance" "bar" {
|
|
ami = "abc"
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|