Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.11 KB

File metadata and controls

36 lines (26 loc) · 1.11 KB

Terraform Managed role module

This module creates an IAM role and attaches the policy to it.. It uses role and policy modules to create the resources. Refer Resources section for more details.

Requirements

Name Version
terraform >= 0.12.26

Providers

Name Version
aws n/a

Inputs

Name Description Type Default Required
assume_role_policy_document Json policy document any n/a yes
policy_description A description of the policy string "" no
policy_document JSON policy document any n/a yes
policy_name The name of the policy to create any n/a yes
role_name The name of the role any n/a yes
tags Additional tags to add to IAM Role Resource. map(any) {} no

Outputs

Name Description
policy_arn The arn of the policy created
policy_name The name of the policy created
role_arn The arn of the role created
role_name The name of the role created