Skip to content

Commit 45aba8f

Browse files
committed
SUMO-170668 password max length can now only be set to 128
1 parent 05eb2f7 commit 45aba8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sumologic/resource_sumologic_password_policy_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
func TestAccPasswordPolicy_create(t *testing.T) {
1313
passwordPolicy := PasswordPolicy{
1414
MinLength: 9,
15-
MaxLength: 50,
15+
MaxLength: 128,
1616
MustContainLowercase: false,
1717
MustContainUppercase: true,
1818
MustContainDigits: false,
@@ -45,7 +45,7 @@ func TestAccPasswordPolicy_create(t *testing.T) {
4545
func TestAccPasswordPolicy_update(t *testing.T) {
4646
passwordPolicy := PasswordPolicy{
4747
MinLength: 10,
48-
MaxLength: 51,
48+
MaxLength: 128,
4949
MustContainLowercase: true,
5050
MustContainUppercase: true,
5151
MustContainDigits: false,
@@ -61,7 +61,7 @@ func TestAccPasswordPolicy_update(t *testing.T) {
6161

6262
updatedPasswordPolicy := PasswordPolicy{
6363
MinLength: 12,
64-
MaxLength: 52,
64+
MaxLength: 128,
6565
MustContainLowercase: false,
6666
MustContainUppercase: false,
6767
MustContainDigits: false,

0 commit comments

Comments
 (0)