Skip to content

Commit

Permalink
certificate contents and password as sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucretius committed Mar 18, 2019
1 parent 10342a8 commit e82eae2
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 e82eae2

Please sign in to comment.