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
enhancement: user_access module now supports passing in aws account ids to set up trust policies so users in different accounts can assume the roles we create (#50)
| assumerole\_account\_ids | AWS account IDs that will be allowed to assume the roles we are creating. If left blank, the AWS account you are using will be used |`list(string)`|`[]`| no |
| project | Name of the project |`any`| n/a | yes |
27
-
| roles |Role list with policies | <pre>list(object({<br> name = string<br> aws_policy = string<br> k8s_policies = list(map(list(string)))<br> }))</pre> | n/a | yes |
28
-
| users |User list with roles | <pre>list(object({<br> name = string<br> roles = list(string)<br> }))</pre> | n/a | yes |
28
+
| roles |Roles to create with associated aws and k8s policies | <pre>list(object({<br> name = string<br> aws_policy = string<br> k8s_policies = list(map(list(string)))<br> }))</pre> | n/a | yes |
29
+
| users |Users to create with associated roles, mapping to the ones defined in the roles variable| <pre>list(object({<br> name = string<br> roles = list(string)<br> }))</pre> | n/a | yes |
0 commit comments