Allow team roles to read platform data sources#92
Merged
Conversation
App repos use data sources to reference shared platform infrastructure (VPC, ALB, ECS cluster, execution role, SNS topics, Route53 zones). These are read-only operations but ABAC blocks them because platform resources have team=platform. Add explicit read-only statement without tag conditions for describe/get/list operations.
Terraform Plan🚧 Changes detected — Plan: 0 to add, 1 to change, 0 to destroy. Plan outputLLM ReviewRisk: 🟢 LOW Adding read-only data source permissions to the testteam CI role for platform infrastructure visibility.
|
Alexanderamiri
added a commit
that referenced
this pull request
May 9, 2026
## Summary App repos reference shared platform infra via Terraform data sources (VPC, ALB, ECS cluster, execution role, SNS topics, Route53). These are read-only but ABAC blocks them because platform resources have `team=platform`. Adds `AllowPlatformDataSourceReads` statement with describe/get/list actions on `Resource = "*"` — no tag conditions needed for reads. Also includes `logs:CreateLogGroup`, `logs:PutRetentionPolicy`, and `ecr:GetAuthorizationToken` which teams need for deployments. ## Test plan - [ ] Merge and apply - [ ] Re-run test app CI — plan should succeed past data source reads
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.
Summary
App repos reference shared platform infra via Terraform data sources (VPC, ALB, ECS cluster, execution role, SNS topics, Route53). These are read-only but ABAC blocks them because platform resources have
team=platform.Adds
AllowPlatformDataSourceReadsstatement with describe/get/list actions onResource = "*"— no tag conditions needed for reads.Also includes
logs:CreateLogGroup,logs:PutRetentionPolicy, andecr:GetAuthorizationTokenwhich teams need for deployments.Test plan