Skip to content
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

Suggestion to allow policy #7

Open
navin0812 opened this issue May 3, 2023 · 0 comments
Open

Suggestion to allow policy #7

navin0812 opened this issue May 3, 2023 · 0 comments

Comments

@navin0812
Copy link

navin0812 commented May 3, 2023

Hi,
I just started to use this module. But for our use case, other than lambda lambda:UpdateFunctionCode we are using several other policies as well. I'd like to make a suggestion to include role_policy_arns so that we can attach that policy to it.

module "lamda_gha" {
  source  = "philips-labs/github-oidc/aws"
  version = "~> 0.7.0"

  count = var.create_github_actions_role ? 1 : 0

  openid_connect_provider_arn = var.create_github_actions_oidc_provider ? module.oidc_provider[0].openid_connect_provider.arn : data.aws_iam_openid_connect_provider.github.arn
  repo                        = var.github_repo.repo
  role_name                   = var.github_repo.role_name
  github_environments         = var.github_repo.environments
  
  + role_policy_arns =  var.attach_policy ? [var.role_policy_arns] : []
  
  default_conditions = var.default_conditions

  conditions = length(var.github_repo.branches) != 0 ? [
    {
      test     = "StringLike"
      variable = "token.actions.githubusercontent.com:sub"
      values   = [for branch in var.github_repo.branches : "repo:${var.github_repo.repo}:ref:refs/heads/${branch}"]
    },
  ] : []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant