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
pull/12241/merge
netjunki 9 years ago committed by Paul Stack
parent 59d1d7056c
commit 72a8b1d62f

@ -566,6 +566,10 @@ func TestResourceAWSRedshiftClusterMasterPasswordValidation(t *testing.T) {
Value: "1Testing",
ErrCount: 0,
},
{
Value: "1Testing@",
ErrCount: 1,
},
}
for _, tc := range cases {

Loading…
Cancel
Save