Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Apart from these keep the following items handy as it would be required during d
- Custom Application Name which would be used to create AppServices/Functions (resource_name_prefix)
- Custom Resource Group Name where all the resources will be deployed
- Location/code to deploy the Azure Resources (e.g. Central US/centralus. Powershell Command: Get-AzureRmLocation |Format-Table)
- Assign "Key Vault Secrets User" role to the deployment principal


### Installing
Expand Down
16 changes: 7 additions & 9 deletions scripts/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@
"enabledForTemplateDeployment": true,
"enableSoftDelete": true,
"softDeleteRetentionInDays": 90,
"enableRbacAuthorization": false
"enableRbacAuthorization": true
}
},
{
Expand Down Expand Up @@ -977,11 +977,11 @@
"description": "Allow all access"
}
],
"scmIpSecurityRestrictionsUseMain": false,
"scmIpSecurityRestrictionsUseMain": true,
"http20Enabled": false,
"minTlsVersion": "1.2",
"scmMinTlsVersion": "1.0",
"ftpsState": "FtpsOnly",
"scmMinTlsVersion": "1.2",
"ftpsState": "Disabled",
"preWarmedInstanceCount": 0,
"functionAppScaleLimit": 0,
"functionsRuntimeScaleMonitoringEnabled": false,
Expand Down Expand Up @@ -1158,8 +1158,7 @@
"AzureAppConfigurationUrl": "[concat('https://',parameters('appConfigurationName'), '.azconfig.io')]",
"ComponentName": "ApprovalsCoreServicesAPI",
"ValidAppIds": "",
"ValidAudienceUrl": "",
"WEBSITE_LOAD_CERTIFICATES": "*"
"ValidAudienceUrl": ""
}
},
{
Expand Down Expand Up @@ -1465,8 +1464,7 @@
"AzureWebJobsDashboard": "[concat('@Microsoft.KeyVault(SecretUri=https://',parameters('keyVaultName'), '.vault.azure.net/secrets/StorageConnectionString)')]",
"AzureWebJobsStorage": "[concat('@Microsoft.KeyVault(SecretUri=https://',parameters('keyVaultName'), '.vault.azure.net/secrets/StorageConnectionString)')]",
"ComponentName": "ApprovalsNotificationProcessor",
"FUNCTIONS_EXTENSION_VERSION": "~3",
"WEBSITE_LOAD_CERTIFICATES": "*"
"FUNCTIONS_EXTENSION_VERSION": "~3"
}
},
{
Expand Down Expand Up @@ -1893,4 +1891,4 @@
}
}
]
}
}
33 changes: 15 additions & 18 deletions scripts/template_devtools.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,11 @@
"description": "Allow all access"
}
],
"scmIpSecurityRestrictionsUseMain": false,
"scmIpSecurityRestrictionsUseMain": true,
"http20Enabled": false,
"minTlsVersion": "1.2",
"scmMinTlsVersion": "1.0",
"ftpsState": "FtpsOnly",
"scmMinTlsVersion": "1.2",
"ftpsState": "Disabled",
"preWarmedInstanceCount": 0,
"functionAppScaleLimit": 0,
"functionsRuntimeScaleMonitoringEnabled": false,
Expand Down Expand Up @@ -492,11 +492,11 @@
"description": "Allow all access"
}
],
"scmIpSecurityRestrictionsUseMain": false,
"scmIpSecurityRestrictionsUseMain": true,
"http20Enabled": false,
"minTlsVersion": "1.2",
"scmMinTlsVersion": "1.0",
"ftpsState": "FtpsOnly",
"scmMinTlsVersion": "1.2",
"ftpsState": "Disabled",
"preWarmedInstanceCount": 0,
"functionAppScaleLimit": 0,
"functionsRuntimeScaleMonitoringEnabled": false,
Expand Down Expand Up @@ -642,11 +642,11 @@
"description": "Allow all access"
}
],
"scmIpSecurityRestrictionsUseMain": false,
"scmIpSecurityRestrictionsUseMain": true,
"http20Enabled": false,
"minTlsVersion": "1.2",
"scmMinTlsVersion": "1.0",
"ftpsState": "FtpsOnly",
"scmMinTlsVersion": "1.2",
"ftpsState": "Disabled",
"preWarmedInstanceCount": 0,
"functionAppScaleLimit": 0,
"functionsRuntimeScaleMonitoringEnabled": false,
Expand Down Expand Up @@ -771,11 +771,11 @@
"description": "Allow all access"
}
],
"scmIpSecurityRestrictionsUseMain": false,
"scmIpSecurityRestrictionsUseMain": true,
"http20Enabled": false,
"minTlsVersion": "1.2",
"scmMinTlsVersion": "1.0",
"ftpsState": "FtpsOnly",
"scmMinTlsVersion": "1.2",
"ftpsState": "Disabled",
"preWarmedInstanceCount": 0,
"functionAppScaleLimit": 0,
"functionsRuntimeScaleMonitoringEnabled": false,
Expand Down Expand Up @@ -932,7 +932,6 @@
"AzureWebJobsDashboard": "",
"FUNCTIONS_EXTENSION_VERSION": "~3",
"ValidAppIds": "",
"WEBSITE_LOAD_CERTIFICATES": "*",
"AppConfigurationLabel": "",
"AzureAppConfigurationUrl": ""
}
Expand Down Expand Up @@ -1067,8 +1066,7 @@
"AzureWebJobsStorage": "",
"AzureWebJobsDashboard": "",
"FUNCTIONS_EXTENSION_VERSION": "~3",
"StorageAccountName": "",
"WEBSITE_LOAD_CERTIFICATES": "*"
"StorageAccountName": ""
}
},
{
Expand Down Expand Up @@ -1202,8 +1200,7 @@
"AzureWebJobsDashboard": "",
"ComponentName": "TenantOnboardingHelperProcessor",
"FUNCTIONS_EXTENSION_VERSION": "~3",
"StorageAccountName": "",
"WEBSITE_LOAD_CERTIFICATES": "*"
"StorageAccountName": ""
}
},
{
Expand All @@ -1224,4 +1221,4 @@
}
}
]
}
}
Loading