mirror of https://github.com/fluxcd/flux2.git
7 lines
259 B
Terraform
7 lines
259 B
Terraform
4 years ago
|
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"
|
||
|
}
|