Skip to content

Commit

Permalink
Mark certificate as sensitive within google_compute_ssl_certificate (
Browse files Browse the repository at this point in the history
danawillow authored Sep 29, 2017
1 parent 512c0c8 commit f31e34c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions google/resource_compute_ssl_certificate.go
Original file line number Diff line number Diff line change
@@ -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{

0 comments on commit f31e34c

Please sign in to comment.