Skip to content

Creation of group with an specific role assigned - Best practices for Ref Arch #212

Answered by yorinasub17
fsanzdev asked this question in Help
Discussion options

You must be logged in to vote

The best way to create this group is to use the custom-iam-entity module directly.

E.g., you can add a new terragrunt config in infrastructure-live that looks like the following:

terraform {
  source = "git::[email protected]:gruntwork-io/terraform-aws-security.git//modules/custom-iam-entity?ref=v0.61.0"
}

inputs = {
  should_require_mfa = false
  should_create_iam_group = true
  iam_group_name = "TODO: name of IAM Group"
  iam_policy_arns = ["LIST", "OF", "IAM_POLICIES", "TO", "ATTACH"]
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by yorinasub17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
2 participants