Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 967 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 967 Bytes

AWS IAM group for console login

This module will create an IAM group and grant access for its members to log into the AWS console and manage their own credentials (and nothing more).

Example

module "group" {
  source = "github.com/chanzuckerberg/cztack/aws-iam-group-console-login?ref=v0.14.0"

  group_name = "..."
  iam_path   = "..."
}

output "group_name" {
  value = "${module.group.group_name}"
}

Requirements

Name Version
aws < 3.0.0

Providers

Name Version
aws < 3.0.0

Inputs

Name Description Type Default Required
group_name Name of the group to be created. string "console-login" no
iam_path IAM path under which resources will be created. string "/" no

Outputs

Name Description
group_name n/a