Skip to content

Commit

Permalink
Fix Default for Computed fields
Browse files Browse the repository at this point in the history
  • Loading branch information
hypnoglow committed Jun 8, 2020
1 parent 488338f commit ee2a5b1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions oryhydra/resource_oryhydra_oauth2_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ func resourceOAuth2Client() *schema.Resource {
"subject_type": {
Type: schema.TypeString,
Optional: true,
Default: "public",
Computed: true,
ValidateFunc: validation.StringInSlice([]string{
"public", "pairwise",
Expand All @@ -140,7 +139,6 @@ func resourceOAuth2Client() *schema.Resource {
"token_endpoint_auth_method": {
Type: schema.TypeString,
Optional: true,
Default: "none",
Computed: true,
ValidateFunc: validation.StringInSlice([]string{
"none", "client_secret_basic", "client_secret_post", "private_key_jwt",
Expand Down

0 comments on commit ee2a5b1

Please sign in to comment.