-| <a name="input_account_assignments"></a> [account\_assignments](#input\_account\_assignments) | A list of objects representing permission assignments for AWS SSO. Each object contains the following attributes:<br> - account\_id: The AWS account ID where the permissions will be applied.<br> - permission\_sets: List of permission-set to be assigned to the specified principals.<br> - principal\_names: An identifier for an object in AWS SSO, such as the names of groups or users .<br> -principal\_type: The entity type for which the assignment will be created. Valid values: USER, GROUP. | <pre>list(object({<br> account_id = string<br> permission_sets = list(string)<br> principal_names = list(string)<br> principal_type = string<br> }))</pre> | <pre>[<br> {<br> "account_id": "121212121212",<br> "permission_sets": [<br> "StagingDev"<br> ],<br> "principal_names": [<br> "Staging_Dev"<br> ],<br> "principal_type": "GROUP"<br> }<br>]</pre> | no |
0 commit comments