fix: replica_configuration.password to be sensitive (#1468)

This commit is contained in:
Nao YONASHIRO 2018-05-11 07:31:07 +09:00 committed by Nathan McKinley
parent 6672e09e9d
commit 1e38b21854

View File

@ -334,9 +334,10 @@ func resourceSqlDatabaseInstance() *schema.Resource {
ForceNew: true,
},
"password": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Sensitive: true,
},
"ssl_cipher": &schema.Schema{
Type: schema.TypeString,