From 307ac5c25acbd1445809563cbadd80cef6336848 Mon Sep 17 00:00:00 2001 From: Avinash Barnwal Date: Thu, 7 Dec 2017 22:44:03 +0530 Subject: [PATCH] Update createresources.sh Added few Comments for clarity --- deploy/az/createresources.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/az/createresources.sh b/deploy/az/createresources.sh index 16572d37d..3a71ca8fd 100644 --- a/deploy/az/createresources.sh +++ b/deploy/az/createresources.sh @@ -4,7 +4,7 @@ CreateGroup() { echo Creating resource group $resource_group in '$location' az group create --name $resource_group --location $location -} # end of system_info +} # end of CreateGroup() @@ -12,7 +12,7 @@ deployresources() { echo Deploying ARM template '$path_and_filename.json' in resource group $resource_group az group deployment create --resource-group $resource_group --parameters @$path_and_filename.parameters.json --template-file $path_and_filename.json -} +} # end of deployresources Error_Usage() { @@ -75,4 +75,4 @@ if [ "$3" == "-c" ]; then fi deployresources -echo "all finished successfully" +echo "all resources finished successfully"