You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_assumable_roles"></a> [assumable\_roles](#input\_assumable\_roles)| List of IAM roles ARNs which can be assumed by the group |`list(string)`|`[]`| no |
38
+
| <aname="input_assumable_roles_policy_name_suffix"></a> [assumable\_roles\_policy\_name\_suffix](#input\_assumable\_roles\_policy\_name\_suffix)| Append this name to the policy name that will be created for assuming the given roles (default: null -- the policy name will be group name) |`string`|`""`| no |
38
39
| <aname="input_group_users"></a> [group\_users](#input\_group\_users)| List of IAM users to have in an IAM group which can assume the role |`list(string)`|`[]`| no |
39
40
| <aname="input_name"></a> [name](#input\_name)| Name of IAM policy and IAM group |`string`| n/a | yes |
40
41
| <aname="input_path"></a> [path](#input\_path)| Path of IAM policy and IAM group |`string`|`"/"`| no |
Copy file name to clipboardExpand all lines: modules/iam-group-with-assumable-roles-policy/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,12 @@ variable "assumable_roles" {
15
15
default=[]
16
16
}
17
17
18
+
variable"assumable_roles_policy_name_suffix" {
19
+
description="Append this name to the policy name that will be created for assuming the given roles (default: null -- the policy name will be group name)"
20
+
type=string
21
+
default=""
22
+
}
23
+
18
24
variable"group_users" {
19
25
description="List of IAM users to have in an IAM group which can assume the role"
0 commit comments