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 and Nic Cope committed Oct 16, 2017
1 parent f1745b2 commit 3553088
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 3553088

Please sign in to comment.