Skip to content

Commit

Permalink
[terraform-beta] adding AUTH_NONE to enums for istio addon_config (#664)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored and danawillow committed May 21, 2019
1 parent cb67670 commit 404ef42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion google-beta/resource_container_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ func resourceContainerCluster() *schema.Resource {
},
"auth": {
Type: schema.TypeString,
Default: "AUTH_NONE",
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"AUTH_MUTUAL_TLS"}, false),
ValidateFunc: validation.StringInSlice([]string{"AUTH_NONE", "AUTH_MUTUAL_TLS"}, false),
},
},
},
Expand Down

0 comments on commit 404ef42

Please sign in to comment.