aws/provider: redshift cluster exercise invalid password char path (#12359)
* aws/provider: redshift cluster exercise invalid password char path * we need the password to be valid except for the one problem character
This commit is contained in:
parent
59d1d7056c
commit
72a8b1d62f
|
@ -566,6 +566,10 @@ func TestResourceAWSRedshiftClusterMasterPasswordValidation(t *testing.T) {
|
||||||
Value: "1Testing",
|
Value: "1Testing",
|
||||||
ErrCount: 0,
|
ErrCount: 0,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Value: "1Testing@",
|
||||||
|
ErrCount: 1,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tc := range cases {
|
for _, tc := range cases {
|
||||||
|
|
Loading…
Reference in New Issue