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_sso_groups"></a> [sso\_groups](#input\_sso\_groups)| (Recquired)A map of objects defining AWS SSO groups to be created. Each object contains:<br> - group\_name: The name of the SSO group.<br> - group\_description: A description for the SSO group. | <pre>map(object(<br> {<br> group_name = string<br> group_description = string<br> }<br> ))</pre> | <pre>{<br> "Org_Staging_Dev": {<br> "group_description": "Developer access to org staging account",<br> "group_name": "Org_Staging_Dev"<br> }<br>}</pre> | no |
30
+
| <aname="input_user_groups_map"></a> [user\_groups\_map](#input\_user\_groups\_map)| (Optional)Mapping of users to their respective sso groups within the Organisation. For example map of `user=[sso_groups]`|`map(list(string))`| <pre>{<br> "employee@org.com": [<br> "Org_Staging_Dev"<br> ]<br>}</pre> | no |
0 commit comments