container-registry

DanielMabbett/container-registry/azurerm

Terraform Module HCL AZURERM ⏱ stale 4y 12mo

Terraform module for Azure Container Registry

Install

module "container-registry" {
source = "DanielMabbett/container-registry/azurerm"
version = "1.0.1"
}
⭐ Source on GitHub 📦 Registry page

README

terraform-azurerm-container-registry !terratest Create a Container Registry Environment with Terraform This Terraform module deploys a Container Registry with additional optional image definitions. Usage ``hcl provider "azurerm" { features {} } resource "random_id" "rg_name" { byte_length = 8 } variable "location" { default = "north europe" } module "container_environment" { source = "../.." name = "acctacr${random_id.rg_name.hex}" resource_group_name = "rg-acct-acr-${random_id.rg_name.hex}" location = "North Europe" sku = "Premium" enable_admin = false webhooks = [ { name = "mywebhook" service_uri = "https://mywebhookreceiver.example/mytag" status = "enabled" scope = "mytag:" actions = ["push"] custom_headers = { "Content-Type" = "application/json" } }, ] tags = { Purpose = "Testing" Envi

Inputs (8)

NameTypeDescriptionDefault
tagsstring required
namestringThe name for the Azure Container Registry"myRegistry"
skustringThe SKU for the Azure Container Registry"premium"
enable_adminstringEnable admin for the Azure Container Registryfalse
georeplication_locationslistGeoreplication regions for the Azure Container Registry[]
webhookslist(object({ name (Required) A list of objects describing the webhooks resources required.[]
resource_group_namestringThe name for the resource group where the Azure Container Registry will reside."myRegistryRG"
locationstringThe location for the resource group where the Azure Container Registry will resi"north europe"

Outputs (1)

container_registry_id — The ID for the Azure Container Registry

Resources (3)

azurerm_container_registryazurerm_container_registry_webhookazurerm_resource_group

Details

FrameworkTerraform Module
LanguageHCL
Version1.0.1
Cloud AZURERM
★ Stars2
Forks2
Total downloads5.3k
Inputs8
Outputs1
Resources3
LicenseMIT
NamespaceDanielMabbett
Updated