Skip to content

Commit

Permalink
google_compute_ssl_certificate: mark private_key as sensitive (hashic…
Browse files Browse the repository at this point in the history
  • Loading branch information
renchap authored and selmanj committed Jul 24, 2017
1 parent 5e3484c commit d2ff7fa
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 @@ -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{
Expand Down

0 comments on commit d2ff7fa

Please sign in to comment.