Setting VSTS variables from PowerShell

Snapshot of my Environment Tear-up Release Phase


I was using a VSTS release pipeline to build an Azure environment today with ARM Templates, and needed to set up a secure connection from a Web App to a Blob Storage account so the app could write logs. As with a lot of things in ARM, you can set up the connection and grab the template, but then you end up having a fixed access URL (SAS URL, or Shared Access Signature) in your JSON file:



This is bad from a portability and security point of view, as the URL only gives access to one named account, but if you have that URL you can write whatever you want to storage. This URL will also expire in around a year's time - which will mean your site suddenly stops working like it used to!  That'll be an fun and interesting day.

Fortunately its easy to create a SAS URL and pass it to a script as a parameter.  This PowerShell will create the access token:

$rg = "my-storage-resource-group"
$name = "mystorageaccount"


$key = ((Get-AzureRmStorageAccountKey -ResourceGroupName $rg -Name $name)[0].value) $context = New-AzureStorageContext -StorageAccountName $name -StorageAccountKey $key $sasUrl = New-AzureStorageContainerSASToken -Name logsToken -Permission rwdl -Context $context -FullUri


And adding this line to the bottom of your script will create (or update) a VSTS environment variable:

Write-Output ("##vso[task.setvariable variable=SasUrl;]$sasUrl")

This value can be accessed later on in your VSTS tasks as:

$(env:SasUrl)

Here I pass the SAS URL into an ARM template in VSTS so that my web app can use it:



 Variables like this are useful for many different tasks when standing up environments using ARM, such as:
* passing the Application ID of a new service principal to a template
* saving the UUID based domain name created for an Application Gateway
* storing passwords or keys temporarily so you can save them in a Key Vault And many more tasks.

Using these variables means you can really cut down the number of manual steps when you read up your environment. Happy scripting!

Comments

Popular posts from this blog

Feature Toggles on a .Net Core API

Feature Toggles for Angular UIs

Setup a Kubernetes Cluster on Azure