Merge pull request #8179 from dgethx/os-lbaasv2-fix-typo

Fix typo in OpenStack LBaaSv2 pool resource
This commit is contained in:
Joe Topjian 2016-08-14 13:08:05 -06:00 committed by GitHub
commit aa94d1cb3c
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ func resourcePoolV2() *schema.Resource {
ForceNew: true, ForceNew: true,
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) { ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
value := v.(string) value := v.(string)
if value != "lTCP" && value != "HTTP" && value != "HTTPS" { if value != "TCP" && value != "HTTP" && value != "HTTPS" {
errors = append(errors, fmt.Errorf( errors = append(errors, fmt.Errorf(
"Only 'TCP', 'HTTP', and 'HTTPS' are supported values for 'protocol'")) "Only 'TCP', 'HTTP', and 'HTTPS' are supported values for 'protocol'"))
} }