mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
8 lines
127 B
Terraform
8 lines
127 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
foo = "bar"
|
||
|
|
||
|
provisioner "shell" {
|
||
|
command = "${aws_instance.foo.foo}"
|
||
|
}
|
||
|
}
|