Add quickstart

This commit is contained in:
John Downs
2022-11-25 19:28:32 +13:00
parent 467e0a67f7
commit b7d0d3fd2c
8 changed files with 491 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Configure the Azure provider
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.27.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.4.3"
}
}
required_version = ">= 1.1.0"
}
provider "azurerm" {
features {}
}