Fix typo in OpenStack LBaaSv2 pool resource

This commit is contained in:
Gruendler, Daniel (415) 2016-08-14 20:56:53 +02:00
parent 8f976e5ceb
commit 698000eb84
1 changed files with 1 additions and 1 deletions

View File

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