Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Resource: aws_identitystore_user #26948

Merged
merged 29 commits into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
381901b
r/aws_identitystore_user: new resource
roberth-k Sep 2, 2022
20b36db
r/aws_identitystore_user: add emails attribute
roberth-k Sep 12, 2022
64bc945
r/aws_identitystore_user: add emails attribute
roberth-k Sep 20, 2022
6d7b1e6
r/aws_identitystore_user: lift name validation into a separate function
roberth-k Sep 20, 2022
5e9413d
r/aws_identitystore_user: add name.formatted attribute
roberth-k Sep 20, 2022
db5500d
r/aws_identitystore_user: add name.honorific_prefix attribute
roberth-k Sep 20, 2022
1b359c8
r/aws_identitystore_user: add name.honorific_suffix attribute
roberth-k Sep 21, 2022
d443527
r/aws_identitystore_user: add name.middle_name attribute
roberth-k Sep 21, 2022
e333017
r/aws_identitystore_user: consolidate validators
roberth-k Sep 21, 2022
e10efdd
r/aws_identitystore_user: add locale attribute
roberth-k Sep 21, 2022
cb1d0e4
r/aws_identitystore_user: add missing empty attributes to basic accep…
roberth-k Sep 21, 2022
d8f2dcb
r/aws_identitystore_user: add nick_name attribute
roberth-k Sep 21, 2022
3e0e32e
r/aws_identitystore_user: add preferred_language attribute
roberth-k Sep 21, 2022
01d2b27
r/aws_identitystore_user: add profile_url attribute
roberth-k Sep 21, 2022
112f4d8
r/aws_identitystore_user: add timezone attribute
roberth-k Sep 21, 2022
6cd01c0
r/aws_identitystore_user: add title attribute
roberth-k Sep 21, 2022
1e6088d
r/aws_identitystore_user: add user_type attribute
roberth-k Sep 21, 2022
d0a6ae6
r/aws_identitystore_user: add addresses attribute
roberth-k Sep 21, 2022
aa2a1be
r/aws_identitystore_user: add phone_numbers attribute
roberth-k Sep 21, 2022
45b2a4b
r/aws_identitystore_user: add external_ids attribute
roberth-k Sep 21, 2022
95992b1
r/aws_identitystore_user: simplify validators
roberth-k Sep 21, 2022
005305e
r/aws_identitystore_user: cleanup
roberth-k Sep 21, 2022
1decc37
r/aws_identitystore_user: add documentation
roberth-k Sep 22, 2022
a66e988
r/aws_identitystore_user: linting
roberth-k Sep 22, 2022
c56b5cc
add changelog entry for #26948
roberth-k Sep 22, 2022
3d2efa1
Merge remote-tracking branch 'origin/main' into f-aws_identitystore_u…
roberth-k Sep 23, 2022
13536f3
r/aws_identitystore_user: linting
roberth-k Sep 23, 2022
7921a41
Merge branch 'main' into HEAD
ewbankkit Sep 27, 2022
9f94c03
r/aws_identitystore_user: 'nick_name' -> 'nickname'.
ewbankkit Sep 27, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/26948.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_identitystore_user
```
2 changes: 2 additions & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1602,6 +1602,8 @@ func New(_ context.Context) (*schema.Provider, error) {
"aws_iam_user_ssh_key": iam.ResourceUserSSHKey(),
"aws_iam_virtual_mfa_device": iam.ResourceVirtualMFADevice(),

"aws_identitystore_user": identitystore.ResourceUser(),

"aws_imagebuilder_component": imagebuilder.ResourceComponent(),
"aws_imagebuilder_container_recipe": imagebuilder.ResourceContainerRecipe(),
"aws_imagebuilder_distribution_configuration": imagebuilder.ResourceDistributionConfiguration(),
Expand Down
Loading