Skip to content

Commit

Permalink
Remove color from terragrunt/terraform log in GCP Cloud Build (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
roger2hk authored Nov 26, 2024
1 parent 730caf6 commit 7edaa6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment/modules/gcp/cloudbuild/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "google_cloudbuild_trigger" "docker" {
id = "preclean_env"
name = "alpine/terragrunt"
script = <<EOT
terragrunt --terragrunt-non-interactive destroy -auto-approve 2>&1
terragrunt --terragrunt-non-interactive --terragrunt-no-color destroy -auto-approve -no-color 2>&1
EOT
dir = "deployment/live/gcp/conformance/ci"
env = [
Expand Down Expand Up @@ -94,7 +94,7 @@ resource "google_cloudbuild_trigger" "docker" {
name = "alpine/terragrunt"
script = <<EOT
export TESSERA_SIGNER=$(cat /workspace/key.sec)
terragrunt --terragrunt-non-interactive apply -auto-approve 2>&1
terragrunt --terragrunt-non-interactive --terragrunt-no-color apply -auto-approve -no-color 2>&1
EOT
dir = "deployment/live/gcp/conformance/ci"
env = [
Expand Down Expand Up @@ -160,7 +160,7 @@ resource "google_cloudbuild_trigger" "docker" {
id = "terraform_destroy_conformance_ci"
name = "alpine/terragrunt"
script = <<EOT
terragrunt --terragrunt-non-interactive destroy -auto-approve 2>&1
terragrunt --terragrunt-non-interactive --terragrunt-no-color destroy -auto-approve -no-color 2>&1
EOT
dir = "deployment/live/gcp/conformance/ci"
env = [
Expand Down

0 comments on commit 7edaa6a

Please sign in to comment.