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