updated remote-exec

This commit is contained in:
uk-bolly 2022-07-26 16:47:53 +01:00 committed by GitHub
parent dbd3ab706d
commit b1daec8c24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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