mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -06:00
10 lines
152 B
HCL
10 lines
152 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_lc" "foo" {}
|
|
|
|
resource "aws_asg" "foo" {
|
|
lc = "${aws_lc.foo.id}"
|
|
|
|
lifecycle { create_before_destroy = true }
|
|
}
|