How to deploy Azure Resource Manager (ARM) templates with GitHub Actions

In my previous post, I showed you how to connect a GitHub Action workflow to your Azure Subscription using the Azure login (azure/login) action. This article will show you how to deploy Azure Resource Manager (ARM) templates using GitHub Actions. Our demo will implement the Azure infrastructure deployment of the whiteducksoftware/sample-mvc application using a GitHub… Continue reading How to deploy Azure Resource Manager (ARM) templates with GitHub Actions

Accept legal terms using PowerShell to deploy ARM templates

Some ARM templates require to accept legal terms before they can be deployed. You can find multiple of these templates within the Azure Resource Manager QuickStart Templates which are available on GitHub. This article will show you how to accept these terms using PowerShell. Prerequisites Az Azure PowerShell module Deploy without accepting the terms We… Continue reading Accept legal terms using PowerShell to deploy ARM templates

Angular 6 application hosted on Azure Storage Static website

A few days ago Microsoft announced a new public preview feature for Azure Storage called Static website. It enables you to host a static web app using Azure Storage which is multiple times cheaper than a traditional required Web App. Reason enough to give it a try. Create a Storage account To use the Static… Continue reading Angular 6 application hosted on Azure Storage Static website

Determine latest API version for a resource provider

Azure Resource Manager templates are great to deploy one or more resources to a resource group. A mandatory part of an ARM template is the resources section that defines the resource types that are deployed or updated. Here is an example: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { "type": "Microsoft.Storage/storageAccounts", "name": "myuniquestorageaccountname", "apiVersion": "2016-01-01",… Continue reading Determine latest API version for a resource provider