Skip to content

Commit

Permalink
Merge pull request #3064 from Lucretius/key_vault_certificate_sensitive
Browse files Browse the repository at this point in the history
certificate contents and password as sensitive
  • Loading branch information
tombuildsstuff authored Mar 18, 2019
2 parents 10342a8 + e82eae2 commit 5b68747
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions azurerm/resource_arm_key_vault_certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,16 @@ func resourceArmKeyVaultCertificate() *schema.Resource {
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"contents": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Type: schema.TypeString,
Required: true,
ForceNew: true,
Sensitive: true,
},
"password": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Sensitive: true,
},
},
},
Expand Down

0 comments on commit 5b68747

Please sign in to comment.