Skip to content

Commit

Permalink
test: gcp-py-gke was getting error about password length
Browse files Browse the repository at this point in the history
Error Message:

```
error: Plan apply failed: googleapi: Error 400: Cluster.master_auth.password must be at least length 16., badRequest
```
  • Loading branch information
stack72 committed Aug 6, 2019
1 parent 21a5ad2 commit a5795ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ func TestExamples(t *testing.T) {
Config: map[string]string{
"gcp:project": "pulumi-ci-gcp-provider",
"gcp:zone": "us-central1-a",
"password": "S4cretPassword!",
"password": "S4cretPassword!$",
"node_count": "3",
"node_machine_type": "n1-standard-2",
},
Expand Down

0 comments on commit a5795ca

Please sign in to comment.