mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
9 lines
128 B
HCL
9 lines
128 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_instance" "bar" {
|
|
ami = "abc"
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|