4
0
Fork 0

updated remote-exec

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

View file

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