opentofu/terraform/test-fixtures/apply-provisioner-resource-ref/main.tf
Mitchell Hashimoto d28e5a1638 dos2unix
2014-07-28 10:43:00 -07:00

8 lines
121 B
HCL

resource "aws_instance" "bar" {
num = "2"
provisioner "shell" {
foo = "${aws_instance.bar.num}"
}
}