Adding quickstart template example
This commit is contained in:
35
quickstart/template/provider.tf
Normal file
35
quickstart/template/provider.tf
Normal 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 {}
|
||||
}
|
Reference in New Issue
Block a user