cm-bot | 80d4fe1 | 2023-09-13 10:28:35 -0400 | [diff] [blame^] | 1 | variable "msg" { |
2 | default = "ok" | ||||
3 | } | ||||
4 | |||||
5 | resource "test_instance" "a" { | ||||
6 | foo = "a" | ||||
7 | } | ||||
8 | |||||
9 | |||||
10 | resource "test_instance" "b" { | ||||
11 | foo = "b" | ||||
12 | provisioner "shell" { | ||||
13 | command = "echo ${var.msg}" | ||||
14 | } | ||||
15 | connection { | ||||
16 | host = test_instance.a.id | ||||
17 | } | ||||
18 | } |