
update readmes clean up tf provider add readme and initial templates add initial pass at readmes more readme updates update various quickstarts finish cleaning up 101s more updates lots fo template updates add remaining more updates
12 lines
294 B
HCL
12 lines
294 B
HCL
provider "azurerm" {
|
|
version = "=1.36.1"
|
|
}
|
|
|
|
# Reference to the current subscription. Used when creating role assignments
|
|
data "azurerm_subscription" "current" {}
|
|
|
|
resource "azurerm_resource_group" "default" {
|
|
name = "${var.name}-${var.environment}-rg"
|
|
location = "${var.location}"
|
|
}
|