Skip to content

Commit

Permalink
Mark api secret as sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
dcreado committed Oct 17, 2024
1 parent 22a390f commit 746985d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func service() *schema.Resource {
"service_name": {Type: schema.TypeString, Required: true},
"issuer": {Type: schema.TypeString, Required: true},
"description": {Type: schema.TypeString, Required: false, Optional: true},
"api_secret": {Type: schema.TypeString, Computed: true},
"api_secret": {Type: schema.TypeString, Computed: true, Sensitive: true},
"clients_per_developer": {Type: schema.TypeInt, Required: false, Optional: true},
"client_id_alias_enabled": {Type: schema.TypeBool, Required: false, Optional: true, Default: false},
"attributes": createAttributeSchema(),
Expand Down

0 comments on commit 746985d

Please sign in to comment.