ATO-2583: add feature flag to remove Orchestration OIDC lambda terraform deployments#8380
Open
Ryan-Andrews99 wants to merge 20 commits into
Open
ATO-2583: add feature flag to remove Orchestration OIDC lambda terraform deployments#8380Ryan-Andrews99 wants to merge 20 commits into
Ryan-Andrews99 wants to merge 20 commits into
Conversation
ecf6179 to
800a0ac
Compare
Louisasa
reviewed
May 26, 2026
| default = true | ||
| } | ||
|
|
||
| variable "deploy_orch_oidc_lambdas" { |
Contributor
There was a problem hiding this comment.
are you sure that this variable doesn't need to be added to all environments (even though it has a default)? just thinking back to the account management issue we had for the key rotation that failed because of some variables that were missing (and I've just checked, they did have defaults but one was a string so it might have been that idk)
| @@ -1,4 +1,5 @@ | |||
| module "oidc_userinfo_role_2" { | |||
| count = var.deploy_orch_oidc_lambdas ? 1 : 0 | |||
Contributor
There was a problem hiding this comment.
I just want to double check that this doesn't technically create a new role (same with any other modules) and therefore cause any downtime? I don't think it should but I'm not entirely confident with terraform
Note there is no equivalent integration for the Orchestration lambdas
This reverts commit 9ff29dc.
800a0ac to
fc1abd3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Wider context of change:
We previously deployed our lambdas into the old Authentication account and these were defined terraform. We would like to remove these to clean up some of the redundant unused resources in the auth account. To roll this out safely we would like to do this per environment.
What’s changed:
.tfvarsfile.Manual testing
TODO:
Checklist
Successfully run Authentication acceptance tests against sandpit or not required.
Added new endpoints to local running (
LocalOrchestrationApi.java) or not required.Related PRs