mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
7 lines
117 B
Terraform
7 lines
117 B
Terraform
|
resource "aws_instance" "bar" {
|
||
|
require_new = "xyz"
|
||
|
lifecycle {
|
||
|
create_before_destroy = true
|
||
|
}
|
||
|
}
|