Skip to content

Commit

Permalink
Correct ngrok credential lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
williamhpark committed Apr 21, 2023
1 parent 00ab385 commit 8dd5818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/ngrok/credentials.go
Expand Up @@ -22,7 +22,7 @@ func Credentials() schema.CredentialType {
Optional: false,
Secret: true,
Composition: &schema.ValueComposition{
Length: 43,
Length: 49,
Charset: schema.Charset{
Uppercase: true,
Lowercase: true,
Expand All @@ -36,7 +36,7 @@ func Credentials() schema.CredentialType {
Optional: true,
Secret: true,
Composition: &schema.ValueComposition{
Length: 48,
Length: 49,
Charset: schema.Charset{
Uppercase: true,
Lowercase: true,
Expand Down

0 comments on commit 8dd5818

Please sign in to comment.