Update null_resource.html.markdown
Fixing example w/ interpolation error.
This commit is contained in:
parent
9202bc0e1c
commit
f8e9a8150a
|
@ -44,7 +44,7 @@ resource "null_resource" "cluster" {
|
||||||
provisioner "remote-exec" {
|
provisioner "remote-exec" {
|
||||||
# Bootstrap script called with private_ip of each node in the clutser
|
# Bootstrap script called with private_ip of each node in the clutser
|
||||||
inline = [
|
inline = [
|
||||||
"bootstrap-cluster.sh ${join(" ", aws_instance.cluster.*.private_ip}"
|
"bootstrap-cluster.sh ${join(" ", aws_instance.cluster.*.private_ip)}"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue