mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
259 B
Terraform
7 lines
259 B
Terraform
3 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"
|
||
|
}
|