From 03b9ed2fc06a1f40a77af30328d165594b0777db Mon Sep 17 00:00:00 2001 From: Al Cutter Date: Fri, 30 Aug 2024 14:23:40 +0000 Subject: [PATCH] Apply CI --- deployment/modules/gcp/cloudbuild/main.tf | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/deployment/modules/gcp/cloudbuild/main.tf b/deployment/modules/gcp/cloudbuild/main.tf index bed17a82..14c2811b 100644 --- a/deployment/modules/gcp/cloudbuild/main.tf +++ b/deployment/modules/gcp/cloudbuild/main.tf @@ -78,16 +78,13 @@ resource "google_cloudbuild_trigger" "docker" { wait_for = ["docker_build_example"] } step { - id = "terraform_plan_all" + id = "terraform_apply_ci" name = "alpine/terragrunt" entrypoint = "terragrunt" args = [ - "run-all", - "plan", - "--terragrunt-include-dir", "./deployment/live/gcp/*/*/", - "--terragrunt-disable-bucket-update", - "--lock=false" + "apply", ] + dir = "deployment/live/gcp/example-gcp/ci" env = [ "TF_IN_AUTOMATION=1", "TF_INPUT=false",