From 229b926d635c14484d78eae2b9a7f217dbb9983c Mon Sep 17 00:00:00 2001 From: Riley Karson Date: Mon, 15 May 2017 12:59:44 -0700 Subject: [PATCH] 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) --- builtin/providers/google/resource_compute_health_check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/google/resource_compute_health_check.go b/builtin/providers/google/resource_compute_health_check.go index a0ac940d6..286ebc195 100644 --- a/builtin/providers/google/resource_compute_health_check.go +++ b/builtin/providers/google/resource_compute_health_check.go @@ -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,