opentofu/terraform/testdata/graph-builder-cbd-non-cbd/main.tf
2019-06-30 10:16:15 +02:00

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 }
}