The Scenario I have a set of ARM templates that deploys an azure app service solution with Azure Key Vault and a secret value. The main template is calling out via the linked template resource reference to the Key Vault resource template. ... snippet ... }, "resources": [ { "apiVersion": "2018-05-01", "name": "linkedTemplate-keyvault", "type": "Microsoft.Resources/deployments", …
Author: Roy Kim (MVP)
Issue Resolution: App Gateway returning ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY in Chrome
Background: I have an Azure App Gateway with the Web Application Firewall that is fronting an Azure App Service for http traffic. Issue: Visiting the public URL of my web app in IE works fine, but in Chrome, I get an error ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY What is the general cause? According to this article, "By default, IIS …
Linked ARM Templates for a Multi Resource Azure Solution
When deploying a set of azure resources using Azure Resource Manager (ARM) templates in a single file can leave with a large json file that can be difficult to manage and maintain. To employ modularity and reuse, you can break out azure resources into its own ARM template and have an ARM template link or …
Continue reading Linked ARM Templates for a Multi Resource Azure Solution
Quick Summary of Azure Bastion (Preview)
Azure Bastion provides remote desktop or SSH access to Azure Virtual machines that are private within the network. I work with bastions or what I call jump servers to manage Azure IaaS resources quite often and so excited to hear about Azure Bastion as a PaaS offering. A Typical ScenarioIn a secure public cloud environment …
Error & Fix: Linked Template ‘Invalid Template … The language expression property templateLink doesn’t exist’
I will explain an ARM template deployment error "The language expression property 'templateLink' doesn't exist" and how I resolved it. My ARM template is using a linked template to call out to provision an Azure Key vault. The following is the ARM template snippet from my main template calling out to the linked template: 1 …
Error & Fix: ARM Linked Template ‘Invalid Template .. could not find template resource’
I will explain an error I encountered and my fix that I find worthwhile sharing and hope that it will save others some time. In my ARM template development, I am trying to deploy an Azure SQL Server PaaS resource and Key Vault. This is so that I can store the DB admin password in …
Azure Resource Graph Queries by Resource Type
The Azure Resource Graph provides the ability query and explore your azure resources at scale. That is across all your subscriptions. I will show options to find the resource type that is be used in your resource graph query. You may ask how to query for storage account resource types and need to find the …
Continue reading Azure Resource Graph Queries by Resource Type
My Azure Resource Graph Queries using Aggregation
Azure Resource Graph supports querying resources across multiple subscriptions and is fast. The key value add is that it supports aggregation using the summarize operator. For example answering questions such as How many resources grouped by subscription or location? How many of each OS type are used in resource groups? What is the most used …
Continue reading My Azure Resource Graph Queries using Aggregation
My Practical Intro to Azure Resource Graph
The Azure Resource Graph is attractive to me for its ability to query Azure resources at scale. I find this relevant in situations where you are managing a large number of subscriptions, resource groups and resources. And you are in situations to analyze and report on them. Without Azure Resource Graph, I would use Azure …
My Quick Intro of the New Az PowerShell Module
A new Azure PowerShell module has just come out this December 2018. I'm a big PowerShell scripter working ARM deployments and managing azure resources, so this definitely necessary and not a one off. Although you can read all the details at Introducing the new Azure PowerShell Az module Here is just my quick summary and …
Continue reading My Quick Intro of the New Az PowerShell Module