terraform/website/source/docs/providers/aws/r/iam_role.html.markdown

1.0 KiB

layout page_title sidebar_current description
aws AWS: aws_iam_role docs-aws-resource-iam-role Provides an IAM role.

aws_iam_role

Provides an IAM role.

Example Usage

resource "aws_iam_role" "test_role" {
    name = "test_role"
    assume_role_policy = <<EOF
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Action": "sts:AssumeRole",
      "Principal": {
        "Service": "ec2.amazonaws.com"
      },
      "Effect": "Allow",
      "Sid": ""
    }
  ]
}
EOF
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the role.
  • assume_role_policy - (Required) The policy that grants an entity permission to assume the role.
  • path - (Optional) The path to the role. See IAM Identifiers for more information.

Attributes Reference

  • arn - The Amazon Resource Name (ARN) specifying the role.
  • unique_id - The stable and unique string identifying the role.