On this page
aws_iam_service_linked_role
Provides an IAM service-linked role.
Example Usage
resource "aws_iam_service_linked_role" "elasticbeanstalk" {
aws_service_name = "elasticbeanstalk.amazonaws.com"
}
Argument Reference
The following arguments are supported:
aws_service_name- (Required, Forces new resource) The AWS service to which this role is attached. You use a string similar to a URL but without thehttp://in front. For example:elasticbeanstalk.amazonaws.com. To find the full list of services that support service-linked roles, check the docs.custom_suffix- (Optional, forces new resource) Additional string appended to the role name. Not all AWS services support custom suffixes.description- (Optional) The description of the role.
Attributes Reference
In addition to all arguments above, the following attributes are exported:
id- The Amazon Resource Name (ARN) of the role.arn- The Amazon Resource Name (ARN) specifying the role.create_date- The creation date of the IAM role.name- The name of the role.path- The path of the role.unique_id- The stable and unique string identifying the role.
Import
IAM service-linked roles can be imported using role ARN, e.g.
$ terraform import aws_iam_service_linked_role.elasticbeanstalk arn:aws:iam::123456789012:role/aws-service-role/elasticbeanstalk.amazonaws.com/AWSServiceRoleForElasticBeanstalk
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/iam_service_linked_role.html