New sample (converted from Bicep via OpenAI)

This commit is contained in:
Tom Archer
2023-03-14 13:13:52 -07:00
parent c4d4d696a5
commit 47483432a8
5 changed files with 138 additions and 0 deletions

View File

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