mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -06:00
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{
|
"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,
|
||||||
|
Loading…
Reference in New Issue
Block a user