From 72a8b1d62f77cf74ba7bcecccff0bc4baa6dfc40 Mon Sep 17 00:00:00 2001 From: netjunki Date: Wed, 1 Mar 2017 20:55:42 -0800 Subject: [PATCH] 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 --- builtin/providers/aws/resource_aws_redshift_cluster_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/builtin/providers/aws/resource_aws_redshift_cluster_test.go b/builtin/providers/aws/resource_aws_redshift_cluster_test.go index fb9a35caf..f44bb158e 100644 --- a/builtin/providers/aws/resource_aws_redshift_cluster_test.go +++ b/builtin/providers/aws/resource_aws_redshift_cluster_test.go @@ -566,6 +566,10 @@ func TestResourceAWSRedshiftClusterMasterPasswordValidation(t *testing.T) { Value: "1Testing", ErrCount: 0, }, + { + Value: "1Testing@", + ErrCount: 1, + }, } for _, tc := range cases {