Changed folder to match convention, added sample to top-level readme

This commit is contained in:
Tom Archer
2021-07-27 20:14:29 -07:00
parent d699082efb
commit ef2d32ca99
4 changed files with 1 additions and 0 deletions

View File

@ -0,0 +1,17 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "rg" {
name = "${var.name}-${var.environment}-rg"
location = "${var.location}"
}