Skip to content

Commit

Permalink
mark password as sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-setka-form3 committed Jun 22, 2021
1 parent c5de6fa commit 32c401b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions auth0/resource_auth0_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ func resourceAuth0User() *schema.Resource {
Optional: true,
},
"password": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Type: schema.TypeString,
Optional: true,
Sensitive: true,
},
"user_metadata": &schema.Schema{
Type: schema.TypeMap,
Expand Down

0 comments on commit 32c401b

Please sign in to comment.