diff --git a/README.md b/README.md
index 735e848f..d8c33bb3 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ Deploying through the Marketplace is great and easy way to get your feet wet for
![Example UI Flow](images/ui.gif)
-You can view the UI in developer mode by [clicking here](https://portal.azure.com/#blade/Microsoft_Azure_Compute/CreateMultiVmWizardBlade/internal_bladeCallId/anything/internal_bladeCallerParams/{"initialData":{},"providerConfig":{"createUiDefinition":"https%3A%2F%2Fraw.githubusercontent.com%2Felastic%2Fazure-marketplace%2Fmaster%2Fsrc%2FcreateUiDefinition.json"}}). If you feel something is cached improperly use [this client unoptimized link instead](https://portal.azure.com/?clientOptimizations=false#blade/Microsoft_Azure_Compute/CreateMultiVmWizardBlade/internal_bladeCallId/anything/internal_bladeCallerParams/{"initialData":{},"providerConfig":{"createUiDefinition":"https%3A%2F%2Fraw.githubusercontent.com%2Felastic%2Fazure-marketplace%2Fmaster%2Fsrc%2FcreateUiDefinition.json"}})
+You can view the UI in developer mode by [clicking here](https://portal.azure.com/#blade/Microsoft_Azure_Compute/CreateMultiVmWizardBlade/internal_bladeCallId/anything/internal_bladeCallerParams/{"initialData":{},"providerConfig":{"createUiDefinition":"https%3A%2F%2Fraw.githubusercontent.com%2Felastic%2Fazure-marketplace%2F7.1%2Fsrc%2FcreateUiDefinition.json"}}). If you feel something is cached improperly use [this client unoptimized link instead](https://portal.azure.com/?clientOptimizations=false#blade/Microsoft_Azure_Compute/CreateMultiVmWizardBlade/internal_bladeCallId/anything/internal_bladeCallerParams/{"initialData":{},"providerConfig":{"createUiDefinition":"https%3A%2F%2Fraw.githubusercontent.com%2Felastic%2Fazure-marketplace%2F7.1%2Fsrc%2FcreateUiDefinition.json"}})
## Reporting bugs
@@ -552,7 +552,7 @@ value defined in the template.
### Web based deploy
-
+
@@ -586,7 +586,7 @@ supported by the last release. It's recommended to update to [Azure CLI 2.0](htt
```sh
az group deployment create \
--resource-group \
- --template-uri https://raw.githubusercontent.com/elastic/azure-marketplace/master/src/mainTemplate.json \
+ --template-uri https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src/mainTemplate.json \
--parameters @parameters/password.parameters.json
```
@@ -611,7 +611,7 @@ where `` refers to the resource group you just created.
```powershell
$clusterParameters = @{
- "artifactsBaseUrl"="https://raw.githubusercontent.com/elastic/azure-marketplace/master/src"
+ "artifactsBaseUrl"="https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src"
"esVersion" = "7.1.1"
"esClusterName" = "elasticsearch"
"loadBalancerType" = "internal"
@@ -637,7 +637,7 @@ where `` refers to the resource group you just created.
5. Use our template directly from GitHub
```powershell
- New-AzureRmResourceGroupDeployment -Name "" -ResourceGroupName "" -TemplateUri "https://raw.githubusercontent.com/elastic/azure-marketplace/master/src/mainTemplate.json" -TemplateParameterObject $clusterParameters
+ New-AzureRmResourceGroupDeployment -Name "" -ResourceGroupName "" -TemplateUri "https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src/mainTemplate.json" -TemplateParameterObject $clusterParameters
```
## Targeting a specific template version
diff --git a/parameters/password.parameters.json b/parameters/password.parameters.json
index 2ca7cc46..efe174ec 100644
--- a/parameters/password.parameters.json
+++ b/parameters/password.parameters.json
@@ -1,5 +1,5 @@
{
- "artifactsBaseUrl":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/master/src"},
+ "artifactsBaseUrl":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src"},
"esVersion":{"value":"6.7.0"},
"esClusterName":{"value":"my-azure-cluster"},
"loadBalancerType":{"value":"internal"},
diff --git a/parameters/ssh.parameters.json b/parameters/ssh.parameters.json
index e523505c..8c59867a 100644
--- a/parameters/ssh.parameters.json
+++ b/parameters/ssh.parameters.json
@@ -1,5 +1,5 @@
{
- "artifactsBaseUrl":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/master/src"},
+ "artifactsBaseUrl":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src"},
"esVersion":{"value":"6.7.0"},
"esClusterName":{"value":"my-azure-cluster"},
"loadBalancerType":{"value":"internal"},
diff --git a/src/mainTemplate.json b/src/mainTemplate.json
index 18d8c2c9..3c0fa678 100644
--- a/src/mainTemplate.json
+++ b/src/mainTemplate.json
@@ -4,7 +4,7 @@
"parameters": {
"artifactsBaseUrl": {
"type": "string",
- "defaultValue": "https://raw.githubusercontent.com/elastic/azure-marketplace/master/src",
+ "defaultValue": "https://raw.githubusercontent.com/elastic/azure-marketplace/7.1/src",
"metadata": {
"artifactsBaseUrl": "Base URL of the Elastic template gallery package"
}