Difference between revisions of "Terraform resource: azurerm container registry"

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
  
 
  resource "azurerm_container_registry" "example" {
 
  resource "azurerm_container_registry" "example" {
   location            = local.resource_group.location
+
   location            = local.[[resource_group]].location
 
   name                = "aksacrtest${random_string.acr_suffix.result}"
 
   name                = "aksacrtest${random_string.acr_suffix.result}"
 
   resource_group_name = local.resource_group.name
 
   resource_group_name = local.resource_group.name

Revision as of 18:23, 16 July 2024


resource "azurerm_container_registry" "example" {
 location            = local.resource_group.location
 name                = "aksacrtest${random_string.acr_suffix.result}"
 resource_group_name = local.resource_group.name
 sku                 = "Premium"

 retention_policy {
   days    = 7
   enabled = true
 }
}


Advertising: