update terraform

This commit is contained in:
Michael Bender
2023-11-16 12:03:20 -06:00
committed by hezijie
parent 2cfbc95445
commit 75c6fa2455
5 changed files with 229 additions and 0 deletions

View File

@ -0,0 +1,16 @@
terraform {
required_version = ">=1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 3.56.0"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {}
}