4
0
Fork 0

updated remote-exec

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2022-07-26 16:51:36 +01:00
parent 80d0deb80d
commit 0c9a88ea1a
No known key found for this signature in database
GPG key ID: F734FDFC154B83FB

View file

@ -71,7 +71,9 @@ resource "aws_instance" "testing_vm" {
type = "ssh"
}
provisioner "remote-exec" {
command = "echo 'hello_world'"
inline = [
"echo 'hello_world'",
]
}
}