github.com/hobbeswalsh/terraform@v0.3.7-0.20150619183303-ad17cf55a0fa/website/source/docs/providers/aws/r/iam_group.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_iam_group" 4 sidebar_current: "docs-aws-resource-iam-group" 5 description: |- 6 Provides an IAM group. 7 --- 8 9 # aws\_iam\_group 10 11 Provides an IAM group. 12 13 ## Example Usage 14 15 ``` 16 resource "aws_iam_group" "developers" { 17 name = "developers" 18 path = "/users/" 19 } 20 ``` 21 22 ## Argument Reference 23 24 The following arguments are supported: 25 26 * `name` - (Required) The group's name. 27 * `path` - (Optional, default "/") Path in which to create the group. 28 29 ## Attributes Reference 30 31 The following attributes are exported: 32 33 * `id` - The group's ID. 34 * `arn` - The ARN assigned by AWS for this group. 35 * `name` - The group's name. 36 * `path` - The path of the group in IAM. 37 * `unique_id` - The [unique ID][1] assigned by AWS. 38 39 [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html#GUIDs