Files
opentf/website/source/docs/providers/aws/r/iam_group_policy.html.markdown
2015-05-29 10:25:42 +09:00

1.2 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
aws AWS: aws_group_policy docs-aws-resource-iam-group-policy Provides an IAM policy attached to a group.

aws_iam_group_policy

Provides an IAM policy attached to a group.

Example Usage

resource "aws_iam_group_policy" "my_developer_policy" {
    name = "my_developer_policy"
    group = "${aws_iam_group.my_developers.id}"
    policy = <<EOF
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Action": [
        "ec2:Describe*"
      ],
      "Effect": "Allow",
      "Resource": "*"
    }
  ]
}
EOF
}

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

Argument Reference

The following arguments are supported:

  • policy - (Required) The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here.
  • name - (Required) Name of the policy.
  • group - (Required) The IAM group to attach to the policy.

Attributes Reference

  • id - The group policy ID.
  • group - The group to which this policy applies.
  • name - The name of the policy.
  • policy - The policy document attached to the group.