-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from FBoucher/vnext
New Release Version 2.0.2
- Loading branch information
Showing
5 changed files
with
232 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...tenerTools/Properties/PublishProfiles/patientcommsshortenertools2fxfh - Zip Deploy.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>ZipDeploy</WebPublishMethod> | ||
<PublishProvider>AzureWebSite</PublishProvider> | ||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | ||
<LastUsedPlatform>Any CPU</LastUsedPlatform> | ||
<SiteUrlToLaunchAfterPublish>http://patientcommsshortenertools2fxfh.azurewebsites.net</SiteUrlToLaunchAfterPublish> | ||
<LaunchSiteAfterPublish>False</LaunchSiteAfterPublish> | ||
<ResourceId>/subscriptions/1b64105e-78ea-4dde-b2b0-4031b5611c06/resourceGroups/PatientCommsGroupv2/providers/Microsoft.Web/sites/patientcommsshortenertools2fxfh</ResourceId> | ||
<UserName>$patientcommsshortenertools2fxfh</UserName> | ||
<_SavePWD>True</_SavePWD> | ||
<PublishUrl>https://patientcommsshortenertools2fxfh.scm.azurewebsites.net/</PublishUrl> | ||
</PropertyGroup> | ||
</Project> |
152 changes: 152 additions & 0 deletions
152
...perties/ServiceDependencies/patientcommsshortenertools2fxfh - Zip Deploy/profile.arm.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"metadata": { | ||
"_dependencyType": "function.windows.consumption" | ||
}, | ||
"parameters": { | ||
"resourceGroupName": { | ||
"type": "string", | ||
"defaultValue": "PatientCommsGroupv2", | ||
"metadata": { | ||
"description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." | ||
} | ||
}, | ||
"resourceGroupLocation": { | ||
"type": "string", | ||
"defaultValue": "uksouth", | ||
"metadata": { | ||
"description": "Location of the resource group. Resource groups could have different location than resources, however by default we use API versions from latest hybrid profile which support all locations for resource types we support." | ||
} | ||
}, | ||
"resourceName": { | ||
"type": "string", | ||
"defaultValue": "patientcommsshortenertools2fxfh", | ||
"metadata": { | ||
"description": "Name of the main resource to be created by this template." | ||
} | ||
}, | ||
"resourceLocation": { | ||
"type": "string", | ||
"defaultValue": "[parameters('resourceGroupLocation')]", | ||
"metadata": { | ||
"description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." | ||
} | ||
} | ||
}, | ||
"resources": [ | ||
{ | ||
"type": "Microsoft.Resources/resourceGroups", | ||
"name": "[parameters('resourceGroupName')]", | ||
"location": "[parameters('resourceGroupLocation')]", | ||
"apiVersion": "2019-10-01" | ||
}, | ||
{ | ||
"type": "Microsoft.Resources/deployments", | ||
"name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", | ||
"resourceGroup": "[parameters('resourceGroupName')]", | ||
"apiVersion": "2019-10-01", | ||
"dependsOn": [ | ||
"[parameters('resourceGroupName')]" | ||
], | ||
"properties": { | ||
"mode": "Incremental", | ||
"expressionEvaluationOptions": { | ||
"scope": "inner" | ||
}, | ||
"parameters": { | ||
"resourceGroupName": { | ||
"value": "[parameters('resourceGroupName')]" | ||
}, | ||
"resourceGroupLocation": { | ||
"value": "[parameters('resourceGroupLocation')]" | ||
}, | ||
"resourceName": { | ||
"value": "[parameters('resourceName')]" | ||
}, | ||
"resourceLocation": { | ||
"value": "[parameters('resourceLocation')]" | ||
} | ||
}, | ||
"template": { | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"resourceGroupName": { | ||
"type": "string" | ||
}, | ||
"resourceGroupLocation": { | ||
"type": "string" | ||
}, | ||
"resourceName": { | ||
"type": "string" | ||
}, | ||
"resourceLocation": { | ||
"type": "string" | ||
} | ||
}, | ||
"variables": { | ||
"storage_name": "[toLower(concat('storage', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId))))]", | ||
"storage_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Storage/storageAccounts/', variables('storage_name'))]", | ||
"function_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/sites/', parameters('resourceName'))]" | ||
}, | ||
"resources": [ | ||
{ | ||
"location": "[parameters('resourceGroupLocation')]", | ||
"name": "[variables('storage_name')]", | ||
"type": "Microsoft.Storage/storageAccounts", | ||
"apiVersion": "2017-10-01", | ||
"tags": { | ||
"[concat('hidden-related:', concat('/providers/Microsoft.Web/sites/', parameters('resourceName')))]": "empty" | ||
}, | ||
"properties": { | ||
"supportsHttpsTrafficOnly": true | ||
}, | ||
"sku": { | ||
"name": "Standard_LRS" | ||
}, | ||
"kind": "Storage" | ||
}, | ||
{ | ||
"location": "[parameters('resourceLocation')]", | ||
"name": "[parameters('resourceName')]", | ||
"type": "Microsoft.Web/sites", | ||
"apiVersion": "2015-08-01", | ||
"dependsOn": [ | ||
"[variables('storage_ResourceId')]" | ||
], | ||
"kind": "functionapp", | ||
"properties": { | ||
"name": "[parameters('resourceName')]", | ||
"kind": "functionapp", | ||
"httpsOnly": true, | ||
"reserved": false | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "appsettings", | ||
"type": "config", | ||
"apiVersion": "2015-08-01", | ||
"dependsOn": [ | ||
"[variables('function_ResourceId')]" | ||
], | ||
"properties": { | ||
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", | ||
"WEBSITE_CONTENTSHARE": "[toLower(parameters('resourceName'))]", | ||
"AzureWebJobsDashboard": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", | ||
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", | ||
"FUNCTIONS_EXTENSION_VERSION": "~3", | ||
"FUNCTIONS_WORKER_RUNTIME": "dotnet" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters