opentofu/terraform/test-fixtures/graph-builder-cbd-non-cbd/main.tf
2015-02-19 12:08:33 -08: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 }
}