From 47203ee2e7ee3517d286dddb96b7bb5773cc314c Mon Sep 17 00:00:00 2001 From: Philo Nordlund Date: Wed, 22 Jun 2016 14:11:01 -0700 Subject: [PATCH] Change _artifactsLocationSasToken defaultValue to "" --- 1-CONTRIBUTION-GUIDE/best-practices.md | 4 ++-- 201-vm-custom-script-windows/azuredeploy.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/1-CONTRIBUTION-GUIDE/best-practices.md b/1-CONTRIBUTION-GUIDE/best-practices.md index aa9f9eda9ba2..11052ea6da7a 100644 --- a/1-CONTRIBUTION-GUIDE/best-practices.md +++ b/1-CONTRIBUTION-GUIDE/best-practices.md @@ -221,7 +221,7 @@ When samples contain scripts, templates or other artifacts that need to be made First, define two standard parameters: * _artifactsLocation - this is the base URI where all artifacts for the deployment will be staged. The default value should be the samples folder so that the sample can be easily deployed in scenarios where a private location is not required. -* _artifactsocationSasToken - this is the sasToken required to access _artifactsLocation. The default value should be "?" for scenarios where the _artifactsLocation is not secured, for example, the raw GitHub URI. +* _artifactsocationSasToken - this is the sasToken required to access _artifactsLocation. The default value should be "" for scenarios where the _artifactsLocation is not secured, for example, the raw GitHub URI. ``` "parameters": { @@ -237,7 +237,7 @@ First, define two standard parameters: "metadata": { "description": "The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated." }, - "defaultValue": "?" + "defaultValue": "" } }, diff --git a/201-vm-custom-script-windows/azuredeploy.json b/201-vm-custom-script-windows/azuredeploy.json index f4237144d119..695572c7dd4a 100644 --- a/201-vm-custom-script-windows/azuredeploy.json +++ b/201-vm-custom-script-windows/azuredeploy.json @@ -39,7 +39,7 @@ "metadata": { "description": "The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated." }, - "defaultValue": "?" + "defaultValue": "" } }, "variables": {