W3cubDocs

/Terraform

aws_iam_user_policy_attachment

Attaches a Managed IAM Policy to an IAM user

Example Usage

resource "aws_iam_user" "user" {
    name = "test-user"
}

resource "aws_iam_policy" "policy" {
    name        = "test-policy"
    description = "A test policy"
    policy      = # omitted
}

resource "aws_iam_user_policy_attachment" "test-attach" {
    user       = "${aws_iam_user.user.name}"
    policy_arn = "${aws_iam_policy.policy.arn}"
}

Argument Reference

The following arguments are supported:

  • user (Required) - The user the policy should be applied to
  • policy_arn (Required) - The ARN of the policy you want to apply

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/iam_user_policy_attachment.html