From b1daec8c244f36ddff60abd4b223699d1ef46585 Mon Sep 17 00:00:00 2001 From: uk-bolly <69214557+uk-bolly@users.noreply.github.com> Date: Tue, 26 Jul 2022 16:47:53 +0100 Subject: [PATCH] updated remote-exec --- .github/workflows/main.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.tf b/.github/workflows/main.tf index ea3af84..59fcc52 100644 --- a/.github/workflows/main.tf +++ b/.github/workflows/main.tf @@ -71,7 +71,9 @@ resource "aws_instance" "testing_vm" { type = "ssh" } provisioner "remote-exec" { - command = "echo 'hello world'" + inline = [ + "echo 'hello_world'", + ] } }