Skip to content

Commit

Permalink
Make additional_unattend_config.content sensitive (#1471)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanScherer authored and tombuildsstuff committed Jul 2, 2018
1 parent a4d70c3 commit 8e05e9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions azurerm/resource_arm_virtual_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,9 @@ func resourceArmVirtualMachine() *schema.Resource {
Required: true,
},
"content": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
},
},
Expand Down
5 changes: 3 additions & 2 deletions azurerm/resource_arm_virtual_machine_scale_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,9 @@ func resourceArmVirtualMachineScaleSet() *schema.Resource {
Required: true,
},
"content": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
},
},
Expand Down

0 comments on commit 8e05e9d

Please sign in to comment.