You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/mysql/howto-data-encryption-portal.md
+127Lines changed: 127 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,133 @@ After Azure Database for MySQL is encrypted with a customer's managed key stored
89
89
90
90

91
91
92
+
93
+
## Using an Azure Resource Manager template to enable data encryption
94
+
95
+
Apart from the Azure portal, you can also enable data encryption on your Azure Database for MySQL server using Azure Resource Manager templates for new and existing servers.
96
+
97
+
### For a new server
98
+
99
+
Use one of the pre-created Azure Resource Manager templates to provision the server with data encryption enabled:
100
+
[Example with Data encryption](https://github.com/Azure/azure-mysql/tree/master/arm-templates/ExampleWithDataEncryption)
101
+
102
+
This Azure Resource Manager template creates a Azure Database for MySQL server and uses the **KeyVault** and **Key** passed as parameters to enable data encryption on the server.
103
+
104
+
### For an existing server
105
+
Additionally, you can use Azure Resource Manager templates to enable data encryption on your existing Azure Database for MySQL servers.
106
+
107
+
* Pass the URI of the Azure Key Vault key that you copied earlier under the `keyVaultKeyUri` property in the properties object.
Copy file name to clipboardExpand all lines: articles/postgresql/howto-data-encryption-portal.md
+125Lines changed: 125 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,131 @@ After Azure Database for PostgreSQL Single server is encrypted with a customer's
89
89
90
90

91
91
92
+
## Using an Azure Resource Manager template to enable data encryption
93
+
94
+
Apart from Azure portal, you can also enable data encryption on your Azure Database for PostgreSQL single server using Azure Resource Manager templates for new and existing server.
95
+
96
+
### For a new server
97
+
98
+
Use one of the pre-created Azure Resource Manager templates to provision the server with data encryption enabled:
99
+
[Example with Data encryption](https://github.com/Azure/azure-postgresql/tree/master/arm-templates/ExampleWithDataEncryption)
100
+
101
+
This Azure Resource Manager template creates a Azure Database for PostgreSQL Single server and uses the **KeyVault** and **Key** passed as parameters to enable data encryption on the server.
102
+
103
+
### For an existing server
104
+
Additionally, you can use Azure Resource Manager templates to enable data encryption on your existing Azure Database for PostgreSQL Single servers.
105
+
106
+
* Pass the URI of the Azure Key Vault key that you copied earlier under the `keyVaultKeyUri` property in the properties object.
To learn more about data encryption, see [Azure Database for PostgreSQL Single server data encryption with customer-managed key](concepts-data-encryption-postgresql.md).
0 commit comments