google_compute_ssl_certificate: mark private_key as sensitive (#220)

This commit is contained in:
Renaud Chaput 2017-07-25 01:24:36 +02:00 committed by Joe Selman
parent 8dbe153426
commit 15ddd678e6

View File

@ -48,9 +48,10 @@ func resourceComputeSslCertificate() *schema.Resource {
},
"private_key": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
Type: schema.TypeString,
Required: true,
ForceNew: true,
Sensitive: true,
},
"description": &schema.Schema{