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:
netjunki 2017-03-01 20:55:42 -08:00 committed by Paul Stack
parent 59d1d7056c
commit 72a8b1d62f
1 changed files with 4 additions and 0 deletions

View File

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