Skip to content

Commit 3a043ed

Browse files
committed
docs(example/assign-users): adds readme file
1 parent 980a92b commit 3a043ed

File tree

1 file changed

+34
-0
lines changed
  • examples/assign-users-and-groups-to-account

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!-- BEGIN_TF_DOCS -->
2+
## Requirements
3+
4+
| Name | Version |
5+
|------|---------|
6+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.8.4 |
7+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.51.0 |
8+
9+
## Providers
10+
11+
| Name | Version |
12+
|------|---------|
13+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.56.1 |
14+
15+
## Modules
16+
17+
| Name | Source | Version |
18+
|------|--------|---------|
19+
| <a name="module_account_perimissions_assignment"></a> [account\_perimissions\_assignment](#module\_account\_perimissions\_assignment) | ../../modules/account_users_and_groups_assignments | n/a |
20+
21+
## Resources
22+
23+
No resources.
24+
25+
## Inputs
26+
27+
| Name | Description | Type | Default | Required |
28+
|------|-------------|------|---------|:--------:|
29+
| <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 |
30+
31+
## Outputs
32+
33+
No outputs.
34+
<!-- END_TF_DOCS -->

0 commit comments

Comments
 (0)