Skip to content

Commit

Permalink
Merge pull request #5 from Mongey/cm-optional-secret_shares_threshold
Browse files Browse the repository at this point in the history
Make secret_shares & secret_threshold optional
  • Loading branch information
rickardgranberg committed Oct 6, 2022
2 parents 9637775 + a5cabdc commit 8df5a1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/resource_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ func resourceInit() *schema.Resource {
argSecretShares: {
Description: "Specifies the number of shares to split the master key into.",
Type: schema.TypeInt,
Required: true,
Optional: true,
},
argSecretThreshold: {
Description: "Specifies the number of shares required to reconstruct the master key.",
Type: schema.TypeInt,
Required: true,
Optional: true,
},
argRecoveryShares: {
Description: "Specifies the number of shares to split the recovery key into.",
Expand Down

0 comments on commit 8df5a1d

Please sign in to comment.