Difference between revisions of "Terraform resource: azurerm container registry"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | * https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/container_registry | ||
+ | * sku: [[Basic]], Standard and Premium | ||
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 | ||
− | sku = "Premium" | + | [[sku]] = "Premium" |
− | + | ||
[[retention_policy]] { | [[retention_policy]] { | ||
days = 7 | days = 7 |
Latest revision as of 18:23, 16 July 2024
- sku: Basic, Standard and Premium
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: