MEM-1138: Add IRSA to info and advice datastore - UAT - #44484
Open
Ian King (ian-antking) wants to merge 1 commit into
Open
MEM-1138: Add IRSA to info and advice datastore - UAT#44484Ian King (ian-antking) wants to merge 1 commit into
Ian King (ian-antking) wants to merge 1 commit into
Conversation
Contributor
Terraform Plan SummaryTerraform Plan: 17 to be created, 0 to be destroyed, 1 to be updated, 0 to be replaced and 25 unchanged.Resources to create:+ kubernetes_secret.irsa
+ module.irsa.kubernetes_service_account.generated_sa
+ module.irsa.module.iam_assumable_role.aws_iam_role.this[0]
+ module.irsa.module.iam_assumable_role.aws_iam_role_policy_attachment.this["rds"]
+ module.irsa.random_id.id
+ module.rds.aws_iam_policy.irsa[0]
+ module.secrets_manager.aws_iam_policy.irsa_policy
+ module.secrets_manager.aws_secretsmanager_secret.secret["laa-info-and-advice-datastore-entra-staging"]
+ module.secrets_manager.kubernetes_manifest.external_secrets["laa-info-and-advice-datastore-entra-staging"]
+ module.secrets_manager.kubernetes_manifest.secret_store
+ module.secrets_manager.module.irsa.kubernetes_service_account.generated_sa
+ module.secrets_manager.module.irsa.module.iam_assumable_role.aws_iam_role.this[0]
+ module.secrets_manager.module.irsa.module.iam_assumable_role.aws_iam_role_policy_attachment.this["irsa"]
+ module.secrets_manager.module.irsa.random_id.id
+ module.secrets_manager.random_id.secret_name["laa-info-and-advice-datastore-entra-staging"]
+ module.secrets_manager.random_id.serviceaccount_id
+ postgresql_grant_role.rds_iamResources to update:! module.rds.aws_db_parameter_group.custom_parameters |
Contributor
Terraform Plan SummaryTerraform Plan: 17 to be created, 0 to be destroyed, 1 to be updated, 0 to be replaced and 25 unchanged.Resources to create:+ kubernetes_secret.irsa
+ module.irsa.kubernetes_service_account.generated_sa
+ module.irsa.module.iam_assumable_role.aws_iam_role.this[0]
+ module.irsa.module.iam_assumable_role.aws_iam_role_policy_attachment.this["rds"]
+ module.irsa.random_id.id
+ module.rds.aws_iam_policy.irsa[0]
+ module.secrets_manager.aws_iam_policy.irsa_policy
+ module.secrets_manager.aws_secretsmanager_secret.secret["laa-info-and-advice-datastore-entra-uat"]
+ module.secrets_manager.kubernetes_manifest.external_secrets["laa-info-and-advice-datastore-entra-uat"]
+ module.secrets_manager.kubernetes_manifest.secret_store
+ module.secrets_manager.module.irsa.kubernetes_service_account.generated_sa
+ module.secrets_manager.module.irsa.module.iam_assumable_role.aws_iam_role.this[0]
+ module.secrets_manager.module.irsa.module.iam_assumable_role.aws_iam_role_policy_attachment.this["irsa"]
+ module.secrets_manager.module.irsa.random_id.id
+ module.secrets_manager.random_id.secret_name["laa-info-and-advice-datastore-entra-uat"]
+ module.secrets_manager.random_id.serviceaccount_id
+ postgresql_grant_role.rds_iamResources to update:! module.rds.aws_db_parameter_group.custom_parameters |
Ian King (ian-antking)
force-pushed
the
mem-1138
branch
from
July 30, 2026 10:17
ae4b262 to
a3a6f02
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.
Adds RDS IAM authentication and moves the Microsoft Entra OAuth2 config into
AWS Secrets Manager for the UAT environments.
rds-postgres.tf-- enables IAM auth on the RDS instance (enable_irsa = true)and grants the
rds_iamrole to the database userirsa.tf(new) -- creates a Kubernetes service account annotated with an IAMrole scoped to
rds-db:connectfor this instanceversions.tf/main.tf-- adds thecyrilgdn/postgresqlprovidervariables.tf-- addseks_cluster_name, required by the IRSA moduleThe existing
rds-postgresql-instance-outputk8s secret is unchanged -- usernameand password remain available for dev access to these environments.