You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
OuJun 5e9c12e5c3
Update readme.md
6 years ago
..
azurefunctions Merge Netcore2 7 years ago
cosmos Created Azure function deployment readme 7 years ago
redis Update readme.md 7 years ago
servicebus make servicebus deployment more accurate and self descriptable 7 years ago
servicefabric Updated ARM template for SF (need only to change prefix parameter) 7 years ago
sql Update to resources deployed: 7 years ago
storage Update readme.md 6 years ago
vms Doc updated with docker-machine 7 years ago
create-resources.cmd Doc updated 7 years ago
createresources.sh Update createresources.sh 7 years ago
readme.md Update readme.md 7 years ago

readme.md

Deploying resources using create-resources script

The create-resources.cmd script is a basic script to allow easy deployment of one ARM template in one resource group. You can deploy to an existing resource group or to create one.

NOTE: Alternatively, you can also use the createresources.sh bash script which can be used as a second option, convenient if you are using the Azure Cloud Bash Shell, a Mac or Linux machine, or simply, bash on Windows, instead of CMD/CommandPrompt in a local Windows

Deploying to a existing resource group - Windows CMD

Just type create-resources [pathfile-to-arm-template] resourcegroup from command-prompt. Called this way the script will:

  1. Search for path-to-arm-template.json and path-to-arm-template.parameters.json files
  2. If they exist, will deploy them in the resourcegroup specified (that resource group in Azure has to exist).

Deploying to a new resource group - Windows CMD

Just type create-resources [pathfile-to-arm-template] resourcegroup -c location. Called this way the script will:

  1. Search for path-to-arm-template.json and path-to-arm-template.parameters.json files
  2. If they exist, will create the resourcegroup specified in the location specified.
  3. Finally will deploy path-to-arm-template.json and path-to-arm-template.parameters.json files in the resourcegroup

Deploying to a existing resource group - Bash shell

Just type createresources.sh [pathfile-to-arm-template] resourcegroup from command-prompt. Called this way the script will:

  1. Search for path-to-arm-template.json and path-to-arm-template.parameters.json files
  2. If they exist, will deploy them in the resourcegroup specified (that resource group in Azure has to exist).

Deploying to a new resource group - Bash shell

Just type createresources.sh [pathfile-to-arm-template] resourcegroup -c location. Called this way the script will:

  1. Search for path-to-arm-template.json and path-to-arm-template.parameters.json files
  2. If they exist, will create the resourcegroup specified in the location specified.
  3. Finally will deploy path-to-arm-template.json and path-to-arm-template.parameters.json files in the resourcegroup