The Azure Quickstart templates are currently available in English
This template provides a way to deploy an Azure database for MariaDB with VNet integration.
Diese ARM-Vorlage (Azure-Ressourcen-Manager) wurde von einem Mitglied der Community und nicht von Microsoft erstellt. Jede ARM-Vorlage wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Zuständigkeiten für ARM-Vorlagen, die von Mitgliedern der Community bereitgestellt und lizenziert werden, und auch nicht für deren Sicherheit, Kompatibilität oder Leistung. ARM-Vorlagen aus der Community werden von keinem Microsoft-Supportprogramm oder -Dienst unterstützt und wie vorhanden ohne jegliche Gewährleistung zur Verfügung gestellt.
Parameter
Parametername | Beschreibung |
---|---|
serverName | Server Name for Azure database for MariaDB |
administratorLogin | Database administrator login name |
administratorLoginPassword | Database administrator password |
skuCapacity | Azure database for MariaDB compute capacity in vCores (2,4,8,16,32) |
skuName | Azure database for MariaDB sku name |
skuSizeMB | Azure database for MariaDB Sku Size |
skuTier | Azure database for MariaDB pricing tier |
skuFamily | Azure database for MariaDB sku family |
mariadbVersion | MariaDB version |
location | Location for all resources. |
backupRetentionDays | MariaDB Server backup retention days |
geoRedundantBackup | Geo-Redundant Backup setting |
virtualNetworkName | Virtual Network Name |
subnetName | Subnet Name |
virtualNetworkRuleName | Virtual Network RuleName |
vnetAddressPrefix | Virtual Network Address Prefix |
subnetPrefix | Subnet Address Prefix |
Verwenden der Vorlage
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure PowerShell installieren und konfigurieren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-managed-mariadb-with-vnet/azuredeploy.json
Befehlszeile
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstallieren und Konfigurieren der plattformübergreifenden Azure-Befehlszeilenschnittstelle
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-managed-mariadb-with-vnet/azuredeploy.json