+| <a name="input_permission_sets"></a> [permission\_sets](#input\_permission\_sets) | (Required)A map of permission set objects with key as the permission set name. Each object contains:<br> - name: The name of the permission set.<br> - description: A brief description of the permission set.<br> - session\_duration: Optional session duration for the permission set (default is null).<br> - relay\_state: Optional relay state for the permission set (default is null).<br> - tags: Optional map of tags to associate with the permission set.<br> - inline\_policy: The inline policy content in JSON format.<br> - managed\_policies: A list of ARNs of managed policies to attach to the permission set.<br> - customer\_managed\_policies: A list of customer-managed policies to attach to the permission set. Each policy includes:<br> - name: The name of the customer-managed policy.<br> - path: The path of the customer-managed policy (default is "/"). | <pre>map(object({<br> name = string<br> description = string<br> session_duration = optional(string, null)<br> relay_state = optional(string, null)<br> tags = optional(map(string))<br> inline_policy = string<br> managed_policies = list(string)<br> customer_managed_policies = list(object({<br> name = string<br> path = optional(string, "/")<br> }))<br> }))</pre> | <pre>{<br> "AdministratorAccess": {<br> "customer_managed_policies": [],<br> "description": "Allow Full Access to the account",<br> "inline_policy": "",<br> "managed_policies": [<br> "arn:aws:iam::aws:policy/AdministratorAccess"<br> ],<br> "name": "AdministratorAccess",<br> "relay_state": "",<br> "session_duration": "PT12H",<br> "tags": {}<br> }<br>}</pre> | no |
0 commit comments