
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
10 lines
413 B
HCL
10 lines
413 B
HCL
locals {
|
|
acr_name = "${replace(var.dns_prefix, "-", "")}${replace(var.name, "-", "")}acr"
|
|
}
|
|
resource "azurerm_container_registry" "default" {
|
|
name = "${local.acr_name}"
|
|
resource_group_name = "${azurerm_resource_group.default.name}"
|
|
location = "${azurerm_resource_group.default.location}"
|
|
sku = "Standard"
|
|
admin_enabled = false
|
|
} |