Skip to content

Commit

Permalink
Merge pull request #72 from ccogan-lh/signing_key_sensitive
Browse files Browse the repository at this point in the history
Mark signing key as sensitive
  • Loading branch information
sergiught authored Mar 2, 2022
2 parents 49af1f6 + e347bb3 commit d7d03e1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions auth0/resource_auth0_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,10 @@ func newClient() *schema.Resource {
},
},
"signing_keys": {
Type: schema.TypeList,
Elem: &schema.Schema{Type: schema.TypeMap},
Computed: true,
Type: schema.TypeList,
Elem: &schema.Schema{Type: schema.TypeMap},
Computed: true,
Sensitive: true,
},
},
}
Expand Down

0 comments on commit d7d03e1

Please sign in to comment.