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

Add aws_cognito_user resource #19919

Merged
merged 39 commits into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
a76b8d4
Add aws_cognito_user
rtim75 Jun 22, 2021
35407fb
make attribute value sensitive
rtim75 Jun 22, 2021
cbd1393
add desiredDeliveryMediums and enabled
rtim75 Aug 14, 2021
d9a7743
Add client_metadata, force_alias_creation and message_action
rtim75 Oct 12, 2021
9b3abf4
add validation data
rtim75 Oct 12, 2021
7284b8a
Add temporary and permanent passwords
rtim75 Oct 12, 2021
6ee25bf
logging fixes; add user status computed field
rtim75 Oct 13, 2021
cc1dac1
add creation and last_modified dates
rtim75 Oct 20, 2021
e6183c3
rename user_status to status
rtim75 Oct 20, 2021
1be1777
Merge branch 'main' of github.com:hashicorp/terraform-provider-aws in…
rtim75 Nov 12, 2021
cc89f04
add computed mfa_preference
rtim75 Nov 12, 2021
4da375a
make user_attributes typeMap
rtim75 Nov 15, 2021
730c494
add computed sub
rtim75 Nov 15, 2021
930a0f1
reorganize schema
rtim75 Nov 15, 2021
f12216e
basic and dissapears tests and fixes
rtim75 Nov 23, 2021
aaaefc9
Merge branch 'main' of github.com:hashicorp/terraform-provider-aws in…
rtim75 Nov 30, 2021
ba83f60
password and temp_password test
rtim75 Dec 2, 2021
c335c29
fixes to password updates; typo
rtim75 Dec 2, 2021
27b9957
ignore fields in basic test import
rtim75 Dec 2, 2021
bb9374b
test attributes
rtim75 Dec 2, 2021
ac0777a
test enabled
rtim75 Dec 2, 2021
3a29ec9
Remove creation_date and last modified date
rtim75 Dec 3, 2021
d52e577
add validate func for the username
rtim75 Dec 3, 2021
c86b704
docs and changelog
rtim75 Dec 3, 2021
5ba9a3b
formatting
rtim75 Dec 3, 2021
f6daf63
update errors check; update docs
rtim75 Dec 3, 2021
3b2d087
update tests to check for empty string
rtim75 Dec 6, 2021
1952176
PR fixes: refactoring
rtim75 Dec 14, 2021
78517ae
Add DiffSupressFunc to the attributes field
rtim75 Dec 14, 2021
9f4186a
adjust phrasing in docs
rtim75 Dec 14, 2021
66c3adf
include ClientMetadata in UpdateUserAttributes
rtim75 Dec 14, 2021
321746d
fix error message using not yet existing id
rtim75 Dec 22, 2021
448c756
apply terrafmt
rtim75 Dec 22, 2021
baa486a
fix attributes section in docs
rtim75 Dec 22, 2021
7013e9f
remove extraneous pointer conversions
rtim75 Dec 22, 2021
8a2cce1
small logging refactor
rtim75 Jan 20, 2022
8b4db9d
add a note about passwords clearing
rtim75 Jan 20, 2022
1688fb7
Remove dev debug log message
rtim75 Jan 20, 2022
538e1c1
Merge `main`
gdavison Feb 2, 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/19919.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_cognito_user
```
1 change: 1 addition & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -932,6 +932,7 @@ func Provider() *schema.Provider {
"aws_cognito_identity_provider": cognitoidp.ResourceIdentityProvider(),
"aws_cognito_resource_server": cognitoidp.ResourceResourceServer(),
"aws_cognito_user_group": cognitoidp.ResourceUserGroup(),
"aws_cognito_user": cognitoidp.ResourceUser(),
"aws_cognito_user_pool": cognitoidp.ResourceUserPool(),
"aws_cognito_user_pool_client": cognitoidp.ResourceUserPoolClient(),
"aws_cognito_user_pool_domain": cognitoidp.ResourceUserPoolDomain(),
Expand Down
Loading