Adding quickstart template example

This commit is contained in:
Mark Gray
2021-04-19 18:44:18 -07:00
parent e932a95d27
commit cefacf9966
6 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,35 @@
# We strongly recommend using the required_providers block to set the
# Azure Provider source and version being used
terraform {
required_version = ">=0.15.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.56.0"
}
}
# We recommend using a remote backend like Azure storage
# backend "azurerm" {
# storage_account_name = "" // existing storage account
# container_name = "tfstate"
# key = "terraform.tfstate"
# resource_group_name = "" // resource group where storage account exists
# }
#
# or Terraform Cloud (https://app.terraform.io)
# backend "remote" {
# hostname = "app.terraform.io"
# organization = "company"
#
# workspaces {
# name = "my-app-prod"
# }
# }
}
# Configure the Microsoft Azure Provider
provider "azurerm" {
features {}
}