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
  • Loading branch information
danawillow authored Sep 29, 2017
1 parent 100879c commit f2e50d4
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
Expand Up @@ -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{
Expand Down

0 comments on commit f2e50d4

Please sign in to comment.