Is there a way to use the Azure CLI 2 to turn on TDE on an existing Azure SQL Database? If yes, would you provide an example.
Thank you,
Is there a way to use the Azure CLI 2 to turn on TDE on an existing Azure SQL Database? If yes, would you provide an example.
Thank you,
幸运的是 az cli 是开源的,因此我们只需查找命令即可。
不幸的是,它似乎尚不受支持(截至 2017 年 4 月 26 日)。代码在那里,但被注释掉了。
# TDE will not be included in the first batch of GA commands
您可以使用该az sql db tde set
命令启用/禁用 TDE。
az sql db tde set --status {Disabled, Enabled}
[--database]
[--ids]
[--resource-group]
[--server]
[--subscription]
例如,az sql db set --resource-group mygroup --server myserver --database mydb --status Enabled
.