From 1bcf227078f78cdcf31e275bd716873ee6f8376c Mon Sep 17 00:00:00 2001 From: Colin Saliceti Date: Tue, 28 Jan 2025 16:39:40 +0000 Subject: [PATCH 1/3] Add TRS to Github actions TRA managed identity --- .../terraform_kubernetes/config/production.tfvars.json | 3 ++- cluster/terraform_kubernetes/config/test.tfvars.json | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/cluster/terraform_kubernetes/config/production.tfvars.json b/cluster/terraform_kubernetes/config/production.tfvars.json index 264f03bb..13643e43 100644 --- a/cluster/terraform_kubernetes/config/production.tfvars.json +++ b/cluster/terraform_kubernetes/config/production.tfvars.json @@ -131,7 +131,8 @@ "itt-mentor-services": ["sandbox", "production"] }, "tra": { - "apply-for-qualified-teacher-status": ["production" ] + "apply-for-qualified-teacher-status": ["production"], + "teaching-record-system": ["production"] }, "ctp": { "teacher-pay-calculator": ["production" ] diff --git a/cluster/terraform_kubernetes/config/test.tfvars.json b/cluster/terraform_kubernetes/config/test.tfvars.json index 587a6f9e..3bc7d120 100644 --- a/cluster/terraform_kubernetes/config/test.tfvars.json +++ b/cluster/terraform_kubernetes/config/test.tfvars.json @@ -96,10 +96,11 @@ "itt-mentor-services": ["review", "qa", "staging"] }, "tra": { - "apply-for-qualified-teacher-status": ["review", "development", "test", "preproduction" ] - }, - "srtl": { - "teacher-pay-calculator": ["development" ] + "apply-for-qualified-teacher-status": ["review", "development", "test", "preproduction" ], + "teaching-record-system": ["dev", "test", "pre-production"] } + }, + "srtl": { + "teacher-pay-calculator": ["development" ] } } From ca7618b10481f9f763d6d6f765edb151864b6d19 Mon Sep 17 00:00:00 2001 From: Colin Saliceti Date: Wed, 29 Jan 2025 11:28:36 +0000 Subject: [PATCH 2/3] Fixed production SRTL managed identity name --- cluster/terraform_kubernetes/config/production.tfvars.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/terraform_kubernetes/config/production.tfvars.json b/cluster/terraform_kubernetes/config/production.tfvars.json index 13643e43..409064e0 100644 --- a/cluster/terraform_kubernetes/config/production.tfvars.json +++ b/cluster/terraform_kubernetes/config/production.tfvars.json @@ -134,7 +134,7 @@ "apply-for-qualified-teacher-status": ["production"], "teaching-record-system": ["production"] }, - "ctp": { + "srtl": { "teacher-pay-calculator": ["production" ] } } From a7cfa0adb3f0b64dd97626518ce379a47579533d Mon Sep 17 00:00:00 2001 From: Colin Saliceti Date: Wed, 29 Jan 2025 11:29:24 +0000 Subject: [PATCH 3/3] Reorder GA WIF managed identities in alphabetical order --- .../terraform_kubernetes/config/production.tfvars.json | 6 +++--- cluster/terraform_kubernetes/config/test.tfvars.json | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cluster/terraform_kubernetes/config/production.tfvars.json b/cluster/terraform_kubernetes/config/production.tfvars.json index 409064e0..943d03b7 100644 --- a/cluster/terraform_kubernetes/config/production.tfvars.json +++ b/cluster/terraform_kubernetes/config/production.tfvars.json @@ -130,12 +130,12 @@ "bat": { "itt-mentor-services": ["sandbox", "production"] }, + "srtl": { + "teacher-pay-calculator": ["production" ] + }, "tra": { "apply-for-qualified-teacher-status": ["production"], "teaching-record-system": ["production"] - }, - "srtl": { - "teacher-pay-calculator": ["production" ] } } } diff --git a/cluster/terraform_kubernetes/config/test.tfvars.json b/cluster/terraform_kubernetes/config/test.tfvars.json index 3bc7d120..69bc603a 100644 --- a/cluster/terraform_kubernetes/config/test.tfvars.json +++ b/cluster/terraform_kubernetes/config/test.tfvars.json @@ -95,12 +95,12 @@ "bat": { "itt-mentor-services": ["review", "qa", "staging"] }, + "srtl": { + "teacher-pay-calculator": ["development" ] + }, "tra": { - "apply-for-qualified-teacher-status": ["review", "development", "test", "preproduction" ], + "apply-for-qualified-teacher-status": ["review", "development", "test", "preproduction"], "teaching-record-system": ["dev", "test", "pre-production"] } - }, - "srtl": { - "teacher-pay-calculator": ["development" ] } }