making the sql admin password sensitive (#12004)

This commit is contained in:
lstolyarov 2017-02-16 12:16:00 +00:00 committed by Paul Stack
parent 5c8e86be09
commit 3f3884890a
1 changed files with 3 additions and 2 deletions

View File

@ -45,8 +45,9 @@ func resourceArmSqlServer() *schema.Resource {
},
"administrator_login_password": &schema.Schema{
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
"fully_qualified_domain_name": &schema.Schema{