Mark certificate as sensitive within google_compute_ssl_certificate (#490)

This commit is contained in:
Dana Hoffman 2017-09-28 17:45:36 -07:00 committed by GitHub
parent 512c0c84d2
commit f31e34cad9

View File

@ -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{