Using GitHub and Terraform to deploy Azure resources - Part 3
Intro In this part of the blog series, I want to deploy my VPN connection to my on-premises environment and the log analytics workspace.
Azure key vault Before I can start with my VPN connection I need to create an Azure key vault to store my VPN shared secret. The variables file for my key vault is shown below.
variable "Location" { type = string default = "WestEurope" } variable "ResourceGroup" { type = string default = "rg-keyvault-001" } The main.
6 minutes to read
Martin Therkelsen