FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_iam_group

Provides an IAM group.

Example Usage

resource "aws_iam_group" "developers" {
    name = "developers"
    path = "/users/"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

IAM Groups can be imported using the name, e.g.

$ terraform import aws_iam_group.developers developers

See the source of this document at Terraform.io