Skip to content

Commit

Permalink
Update xxx.sandbox.md
Browse files Browse the repository at this point in the history
  • Loading branch information
starkfell authored Dec 8, 2020
1 parent 0205518 commit e25dee9
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions articles/xxx.sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Select Azure Resource Manager

Service Principal (automatic)

Service connection name is **yaml-piplines-demo**. Leave **Grant access permission to all pipelines** under **Secuirty** checked. Lastly, click **Save**.
Service connection name is **yaml-pipelines-demo**. Leave **Grant access permission to all pipelines** under **Secuirty** checked. Lastly, click **Save**.

> **Note:** When removing this automated Service Principal later for your Azure Subscription, it's going to have a name similar to what is shown below:
Expand Down Expand Up @@ -147,7 +147,7 @@ steps:
scriptType: 'bash'
scriptLocation: 'inlineScript'
'inlineScript': |
az storage account create --name yamlpipeldemostr --resource-group yaml-pipeline-demo-rg --location westeurope --output table
az storage account create --name yamlpipedemostr --resource-group yaml-pipeline-demo-rg --location westeurope --output table
```
<br/>
Expand Down Expand Up @@ -211,12 +211,12 @@ steps:
scriptType: 'bash'
scriptLocation: 'inlineScript'
'inlineScript': |
az storage account create --name yamlpipeldemostr --resource-group yaml-pipeline-demo-rg --location westeurope --output table
az storage account create --name yamlpipedemostr --resource-group yaml-pipeline-demo-rg --location westeurope --output table
```
<br/>
Additional Documentation: [Azure DevOps - Runtime Parameters](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/runtime-parameters?view=azure-devops&tabs=script)
Check in Azure DevOps and the Azure Portal to verify the resources were deployed successfully.
<br/>
Expand Down Expand Up @@ -269,6 +269,10 @@ steps:
<br/>
Check in Azure DevOps and the Azure Portal to verify the resources were deployed successfully.
<br/>
## Deploying resources dynamically in a Build Pipeline
In the **yaml-pipelines-demo** Project, copy the contents below into a file called **deploy-resources.yaml** file and then **Commit** it.
Expand Down Expand Up @@ -332,6 +336,12 @@ stages:
<br/>
Check in Azure DevOps and the Azure Portal to verify that the four Resource Groups and four Storage Accounts were deployed successfully.
<br/>
## Additional Notes
[Azure DevOps - Runtime Parameters](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/runtime-parameters?view=azure-devops&tabs=script)
<br/>

0 comments on commit e25dee9

Please sign in to comment.