From c4685ec947024a350fd7320714ac2053ef441db5 Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Wed, 16 Oct 2024 14:30:31 -0700 Subject: [PATCH 1/5] Update terraform_apply.yaml --- .github/workflows/terraform_apply.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/terraform_apply.yaml b/.github/workflows/terraform_apply.yaml index 12c67b3..cfeebe7 100644 --- a/.github/workflows/terraform_apply.yaml +++ b/.github/workflows/terraform_apply.yaml @@ -103,6 +103,7 @@ jobs: runs-on: ["229685449397"] needs: Plan environment: requires_approval + if: ${{ needs.Plan.output.pending_changes == 'true' }} steps: - name: AWS Auth id: aws_auth From c50cd04e2e7236de852ad7a45af21bac9642c9ae Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Wed, 16 Oct 2024 14:39:51 -0700 Subject: [PATCH 2/5] Update default.tfvars --- varfiles/default.tfvars | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/varfiles/default.tfvars b/varfiles/default.tfvars index 44fca23..6aaa903 100644 --- a/varfiles/default.tfvars +++ b/varfiles/default.tfvars @@ -3,6 +3,16 @@ image_pipeline_workflows = { } repolist = [ + { + description = "Module for attaching Actions and Environments to target repos" + repo_org = "CSVD" + name = "terraform-git-workspace" + is_private = false + repo_topics = [ + "terraform-tools", + "github-actions" + ] + }, { description = "Managing AWS CSVD Secrets" repo_org = "CSVD" From 078d1e1c124c6f7c2eb6596947dc108f071df68b Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Wed, 16 Oct 2024 14:46:53 -0700 Subject: [PATCH 3/5] Update terraform_apply.yaml --- .github/workflows/terraform_apply.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/terraform_apply.yaml b/.github/workflows/terraform_apply.yaml index cfeebe7..12c67b3 100644 --- a/.github/workflows/terraform_apply.yaml +++ b/.github/workflows/terraform_apply.yaml @@ -103,7 +103,6 @@ jobs: runs-on: ["229685449397"] needs: Plan environment: requires_approval - if: ${{ needs.Plan.output.pending_changes == 'true' }} steps: - name: AWS Auth id: aws_auth From 0bff1ef4e9692572482f9b7d1d934dee799515d1 Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Thu, 17 Oct 2024 11:21:05 -0700 Subject: [PATCH 4/5] Update default.tfvars (#27) * Update default.tfvars * Update varfiles/default.tfvars Co-authored-by: Matthew Creal Morgan --------- Co-authored-by: Matthew Creal Morgan --- varfiles/default.tfvars | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/varfiles/default.tfvars b/varfiles/default.tfvars index 6aaa903..4290323 100644 --- a/varfiles/default.tfvars +++ b/varfiles/default.tfvars @@ -22,6 +22,15 @@ repolist = [ "terraform-tools" ] }, + { + description = "Managing AWS Github Runner Image" + repo_org = "CSVD" + name = "github-runner-image" + is_private = false + repo_topics = [ + "terraform-tools" + ] + }, { description = "Tools for managing Terraform" repo_org = "CSVD" From 422748277ea7b6284e80670bcf04a648ed3d11b6 Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Fri, 18 Oct 2024 09:45:46 -0700 Subject: [PATCH 5/5] Update sandbox.tf (#29) --- sandbox.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox.tf b/sandbox.tf index e698194..5db9da3 100644 --- a/sandbox.tf +++ b/sandbox.tf @@ -1,7 +1,7 @@ locals { workspace_instances = [ - "arnol377-sandbox" + # "arnol377-sandbox" ] }