
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
13 lines
271 B
HCL
13 lines
271 B
HCL
data "azurerm_subscription" "current" {}
|
|
|
|
data "azurerm_client_config" "current" {}
|
|
|
|
provider "azurerm" {
|
|
version = "=1.36.1"
|
|
}
|
|
|
|
resource "azurerm_resource_group" "default" {
|
|
name = "${var.name}-${var.environment}-rg"
|
|
location = "${var.location}"
|
|
}
|