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:
parent
f5056b7e63
commit
229b926d63
|
@ -110,11 +110,11 @@ func resourceComputeHealthCheck() *schema.Resource {
|
|||
"host": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
Optional: true,
|
||||
Default: 80,
|
||||
},
|
||||
"port": &schema.Schema{
|
||||
Type: schema.TypeInt,
|
||||
Optional: true,
|
||||
Default: 80,
|
||||
},
|
||||
"proxy_header": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
|
@ -140,11 +140,11 @@ func resourceComputeHealthCheck() *schema.Resource {
|
|||
"host": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
Optional: true,
|
||||
Default: 443,
|
||||
},
|
||||
"port": &schema.Schema{
|
||||
Type: schema.TypeInt,
|
||||
Optional: true,
|
||||
Default: 443,
|
||||
},
|
||||
"proxy_header": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
|
|
Loading…
Reference in New Issue