Skip to content

feat: Add permissions to access repository credentials to ecs_task_access_secrets #306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Nov 3, 2022
Merged
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,8 @@ data "aws_iam_policy_document" "ecs_task_access_secrets" {
aws_ssm_parameter.atlantis_github_user_token[*].arn,
aws_ssm_parameter.atlantis_gitlab_user_token[*].arn,
aws_ssm_parameter.atlantis_bitbucket_user_token[*].arn,
aws_ssm_parameter.atlantis_github_app_key[*].arn
aws_ssm_parameter.atlantis_github_app_key[*].arn,
try(var.repository_credentials["credentialsParameter"], [])
])

actions = [
Expand Down