Add quickstart

This commit is contained in:
John Downs
2022-10-25 10:20:57 +13:00
parent 467e0a67f7
commit 3226d364a8
7 changed files with 338 additions and 0 deletions

View File

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