Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

mark password sensitive on user resource #117

Merged
merged 2 commits into from
Sep 23, 2019
Merged
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions auth0/resource_auth0_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ func newUser() *schema.Resource {
Optional: true,
},
"password": {
Type: schema.TypeString,
Optional: true,
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"phone_number": {
Type: schema.TypeString,
Expand Down