mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
13 lines
210 B
HCL
13 lines
210 B
HCL
resource "aws_instance" "bar" {
|
|
value = "hello"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "bar"
|
|
|
|
provisioner "shell" {
|
|
command = "${aws_instance.bar.value}"
|
|
when = "destroy"
|
|
}
|
|
}
|