Skip to content

Commit

Permalink
Fixing typos in contribution guide readme
Browse files Browse the repository at this point in the history
  • Loading branch information
balent committed Oct 7, 2018
1 parent 0c2a09d commit 5a7888f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 1-CONTRIBUTION-GUIDE/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The README.md describes your deployment. A good description helps other communit
+ Deploy to Azure button
+ Visualize button
+ Description of what the template will deploy
+ Tags, that can be used for search. Specify the tags comma seperated and enclosed between two back-ticks (e.g Tags: `cluster, ha, sql`)
+ Tags, that can be used for search. Specify the tags comma separated and enclosed between two back-ticks (e.g Tags: `cluster, ha, sql`)
+ *Optional: Prerequisites
+ *Optional: Description on how to use the application
+ *Optional: Notes
Expand Down Expand Up @@ -229,8 +229,8 @@ If your template has some pre-requisite such as existing Virtual Network or stor

+ Create a folder named `prereqs ` in root of your template folder, Store pre-requisite template file, parameters file and artifacts inside this folder.
+ Store pre-requisite template file with name `prereq.azuredeploy.json ` and parameters files with name `prereq.azuredeploy.parameters.json`
+ `prereq.azuredeploy.json` should deploy all required pre-existing resources by your main template and also output the values required by main template to leverage those resources. For example, if your template needs an existing VNET to be available prior to the deployment of main template, you should develop a pre-req template which deployes a VNET and outputs the VNET ID or VNET name of the virtual network created.
+ In order to use the values generated by outputs after deployment of `prereq.azuredeploy.json`, you will need to define parameter values as `GET-PREREQ-OutputName`. For exmaple, if you generated a output with name `vnetID` in pre-req template, in order use the value of this output in main template, enter the value of corresponding parameter in main template parameters file as `GET-PREREQ-vnetID`
+ `prereq.azuredeploy.json` should deploy all required pre-existing resources by your main template and also output the values required by main template to leverage those resources. For example, if your template needs an existing VNET to be available prior to the deployment of main template, you should develop a pre-req template which deploys a VNET and outputs the VNET ID or VNET name of the virtual network created.
+ In order to use the values generated by outputs after deployment of `prereq.azuredeploy.json`, you will need to define parameter values as `GET-PREREQ-OutputName`. For example, if you generated a output with name `vnetID` in pre-req template, in order use the value of this output in main template, enter the value of corresponding parameter in main template parameters file as `GET-PREREQ-vnetID`
+ Check out this [sample template](https://github.com/Azure/azure-quickstart-templates/tree/master/101-subnet-add-vnet-existing) to learn more

If your template has some pre-requisite such as an Azure Active Directory application or service principal, we don't support this yet. To bypass the CI workflow include a file called .ci_skip in the root of your template folder.
Expand Down

0 comments on commit 5a7888f

Please sign in to comment.