From e21af1f35471300c4d30d8303f99011defc24942 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Wed, 6 May 2026 14:24:14 -0700 Subject: [PATCH 1/5] Test new version --- env0.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/env0.yaml b/env0.yaml index 6de04da..a44f069 100644 --- a/env0.yaml +++ b/env0.yaml @@ -19,12 +19,12 @@ deploy: terraformPlan: after: - name: Submit Plan to Overmind - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid inputs: action: submit-plan api_key: ${OVM_API_KEY} - name: Wait for Analysis - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid inputs: action: wait-for-simulation api_key: ${OVM_API_KEY} @@ -51,14 +51,14 @@ deploy: terraformApply: before: - name: Mark Change Started - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid inputs: action: start-change api_key: ${OVM_API_KEY} after: - name: Mark Change Finished - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid inputs: action: end-change api_key: ${OVM_API_KEY} From 3eccf1025b6285cd89a6f9191b6124dbeec4bdc5 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Wed, 6 May 2026 15:03:10 -0700 Subject: [PATCH 2/5] Fixed creds directory --- terraform.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/terraform.tf b/terraform.tf index 8f8419b..6edb573 100644 --- a/terraform.tf +++ b/terraform.tf @@ -8,6 +8,10 @@ provider "aws" { provider "google" { project = var.gcp_project_id region = var.gcp_region + # In env0, this file is dropped by the GCP OIDC deployment credential and + # contains an external_account WIF config. Locally it doesn't exist, so we + # fall through to Application Default Credentials (gcloud auth). + credentials = fileexists("${path.root}/env0_credential_configuration.json") ? file("${path.root}/env0_credential_configuration.json") : null } # Disable this temporarily during bootstrapping and use `terraform init From 538c0996a1d2c033de10633c5499b3e8376de575 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Wed, 6 May 2026 15:32:46 -0700 Subject: [PATCH 3/5] Test signing binaries --- env0.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/env0.yaml b/env0.yaml index a44f069..6de04da 100644 --- a/env0.yaml +++ b/env0.yaml @@ -19,12 +19,12 @@ deploy: terraformPlan: after: - name: Submit Plan to Overmind - use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid + use: https://github.com/overmindtech/env0-plugin inputs: action: submit-plan api_key: ${OVM_API_KEY} - name: Wait for Analysis - use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid + use: https://github.com/overmindtech/env0-plugin inputs: action: wait-for-simulation api_key: ${OVM_API_KEY} @@ -51,14 +51,14 @@ deploy: terraformApply: before: - name: Mark Change Started - use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid + use: https://github.com/overmindtech/env0-plugin inputs: action: start-change api_key: ${OVM_API_KEY} after: - name: Mark Change Finished - use: https://github.com/overmindtech/env0-plugin@eng-4198-env0-plugin-skip-submit-plan-after-approval-to-avoid + use: https://github.com/overmindtech/env0-plugin inputs: action: end-change api_key: ${OVM_API_KEY} From 042e229654e92d4139af3c6ee2753c75d9b27218 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Wed, 6 May 2026 15:34:53 -0700 Subject: [PATCH 4/5] Updated to test version --- env0.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/env0.yaml b/env0.yaml index 6de04da..126b761 100644 --- a/env0.yaml +++ b/env0.yaml @@ -19,12 +19,12 @@ deploy: terraformPlan: after: - name: Submit Plan to Overmind - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@signing-binaries inputs: action: submit-plan api_key: ${OVM_API_KEY} - name: Wait for Analysis - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@signing-binaries inputs: action: wait-for-simulation api_key: ${OVM_API_KEY} @@ -51,14 +51,14 @@ deploy: terraformApply: before: - name: Mark Change Started - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@signing-binaries inputs: action: start-change api_key: ${OVM_API_KEY} after: - name: Mark Change Finished - use: https://github.com/overmindtech/env0-plugin + use: https://github.com/overmindtech/env0-plugin@signing-binaries inputs: action: end-change api_key: ${OVM_API_KEY} From efc01599854b3b58628b166d698cc8270fa35ad3 Mon Sep 17 00:00:00 2001 From: Dylan Ratcliffe Date: Wed, 6 May 2026 15:44:29 -0700 Subject: [PATCH 5/5] Revert versions --- env0.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/env0.yaml b/env0.yaml index 126b761..6de04da 100644 --- a/env0.yaml +++ b/env0.yaml @@ -19,12 +19,12 @@ deploy: terraformPlan: after: - name: Submit Plan to Overmind - use: https://github.com/overmindtech/env0-plugin@signing-binaries + use: https://github.com/overmindtech/env0-plugin inputs: action: submit-plan api_key: ${OVM_API_KEY} - name: Wait for Analysis - use: https://github.com/overmindtech/env0-plugin@signing-binaries + use: https://github.com/overmindtech/env0-plugin inputs: action: wait-for-simulation api_key: ${OVM_API_KEY} @@ -51,14 +51,14 @@ deploy: terraformApply: before: - name: Mark Change Started - use: https://github.com/overmindtech/env0-plugin@signing-binaries + use: https://github.com/overmindtech/env0-plugin inputs: action: start-change api_key: ${OVM_API_KEY} after: - name: Mark Change Finished - use: https://github.com/overmindtech/env0-plugin@signing-binaries + use: https://github.com/overmindtech/env0-plugin inputs: action: end-change api_key: ${OVM_API_KEY}