fluxcd-flux2/tests/integration/terraform/azure/acr.tf
2022-09-29 22:07:19 +01:00

6 lines
259 B
HCL

resource "azurerm_container_registry" "this" {
name = "acrapps${random_pet.suffix.id}"
resource_group_name = azurerm_resource_group.this.name
location = azurerm_resource_group.this.location
sku = "Standard"
}