blob: d20191f33b132d59d6beeb82b3dd6adf9904bfd5 [file] [log] [blame]
variable "msg" {
default = "ok"
}
resource "test_instance" "a" {
foo = "a"
}
resource "test_instance" "b" {
foo = "b"
provisioner "shell" {
command = "echo ${var.msg}"
}
connection {
host = test_instance.a.id
}
}