mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-27 17:06:27 -06:00
10 lines
187 B
HCL
10 lines
187 B
HCL
resource "aws_lc" "foo" {
|
|
lifecycle { create_before_destroy = true }
|
|
}
|
|
|
|
resource "aws_autoscale" "bar" {
|
|
lc = "${aws_lc.foo.id}"
|
|
|
|
lifecycle { create_before_destroy = true }
|
|
}
|