created new 101 folder and added tf files and readme.md

This commit is contained in:
Eric D
2022-12-15 10:42:43 -05:00
parent 276af30347
commit 1eb6e680f9
5 changed files with 221 additions and 0 deletions

View File

@ -0,0 +1,22 @@
terraform {
required_version = ">=0.12"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
tls = {
source = "hashicorp/tls"
version = "~>4.0"
}
}
}
provider "azurerm" {
features {}
}