From f31e34cad979432ed83506159b6b786cd8a2a783 Mon Sep 17 00:00:00 2001 From: Dana Hoffman Date: Thu, 28 Sep 2017 17:45:36 -0700 Subject: [PATCH] Mark certificate as sensitive within `google_compute_ssl_certificate` (#490) --- google/resource_compute_ssl_certificate.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/google/resource_compute_ssl_certificate.go b/google/resource_compute_ssl_certificate.go index 479e4d6f..ead49a7d 100644 --- a/google/resource_compute_ssl_certificate.go +++ b/google/resource_compute_ssl_certificate.go @@ -17,9 +17,10 @@ func resourceComputeSslCertificate() *schema.Resource { Schema: map[string]*schema.Schema{ "certificate": &schema.Schema{ - Type: schema.TypeString, - Required: true, - ForceNew: true, + Type: schema.TypeString, + Required: true, + ForceNew: true, + Sensitive: true, }, "name": &schema.Schema{