provider/google: Fix the health check default values for http and https so they match the expected value in the documentation and specific health check instances. (#14441)

This commit is contained in:
Riley Karson 2017-05-15 12:59:44 -07:00 committed by Dana Hoffman
parent f5056b7e63
commit 229b926d63
1 changed files with 2 additions and 2 deletions

View File

@ -110,11 +110,11 @@ func resourceComputeHealthCheck() *schema.Resource {
"host": &schema.Schema{ "host": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
Default: 80,
}, },
"port": &schema.Schema{ "port": &schema.Schema{
Type: schema.TypeInt, Type: schema.TypeInt,
Optional: true, Optional: true,
Default: 80,
}, },
"proxy_header": &schema.Schema{ "proxy_header": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
@ -140,11 +140,11 @@ func resourceComputeHealthCheck() *schema.Resource {
"host": &schema.Schema{ "host": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
Default: 443,
}, },
"port": &schema.Schema{ "port": &schema.Schema{
Type: schema.TypeInt, Type: schema.TypeInt,
Optional: true, Optional: true,
Default: 443,
}, },
"proxy_header": &schema.Schema{ "proxy_header": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,