Merge pull request #2 from Azure/iafixes

Resolve validation issue; update Readme
This commit is contained in:
John Molesky 2018-08-03 09:43:44 -04:00 коммит произвёл GitHub
Родитель dc636fa03d ad6e24e000
Коммит f4e642dab0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 18 добавлений и 6 удалений

Просмотреть файл

@ -73,7 +73,7 @@ The table below provides additional information about deployment parameters.
LogsWorkspaceLocation|westeurope|Which Azure Region to deploy the Log Analytics workspace to
LogAnalyticsSKU|N/A|The SKU for provisioning the Log Analytics solution. Note if your subscription has been moved to the "new" pricing only "pergb2018" will work, if not it is "Free"
databaseServerName|concat('svr-', uniqueString(resourceGroup().id))|Name of the database server to deploy
sqlServerAdminPassword|concat('L1',uniqueString(subscription().id),'#')|The default password for the SQL Admin user
sqlServerAdminPassword|N/A|The password for administering the SQL Server, this should be at least 8 characters and a mix of case and numerics - please see [Strong Passwords](https://docs.microsoft.com/en-us/sql/relational-databases/security/strong-passwords?view=sql-server-2017) for more details.
useAADForSQLAdmin|No|Allowed Values "Yes", "No". Sets whether Azure Active Directory will be used for SQL Server Administration
AADAdminLogin|ignore|The Login ID for the Azure Active Directory user or group to be Server Admin, e.g., sg_azure_sql_dbo@contoso.com
AADAdminObjectID|ignore|The underlying ObjectID (in the form of a GUID) representing the assigned Azure Active Directory user / group

Просмотреть файл

@ -1,6 +1,5 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"name": "pid-8286eaf5-74c6-4ddc-85cb-51f67af6a795",
"contentVersion": "1.0.0.0",
"parameters": {
"baseResourceName": {
@ -78,9 +77,8 @@
"sqlServerAdminPassword": {
"type": "securestring",
"metadata": {
"description": "The password for administering the SQL Server"
},
"defaultValue": "[concat('L1',uniqueString(subscription().id),'#')]"
"description": "The password for administering the SQL Server, this should be at least 8 characters and a mix of case and numerics - please see https://docs.microsoft.com/en-us/sql/relational-databases/security/strong-passwords?view=sql-server-2017 for more details."
}
},
"useAADForSQLAdmin": {
"type": "string",
@ -143,7 +141,21 @@
"logAnalyticsTemplateUrl": "[concat(variables('templateBaseUrl'), 'Microsoft.OperationalInsights/deployLogAnalytics.json')]",
"storageAccountBaseName": "[uniqueString(resourceGroup().id)]"
},
"resources": [{
"resources": [
{
"apiVersion": "2017-05-10",
"name": "pid-8286eaf5-74c6-4ddc-85cb-51f67af6a795",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": []
}
}
},
{
"apiVersion": "2017-05-10",
"name": "deployLogAnalyticsWorkspace",
"type": "Microsoft.Resources/deployments",