azure::registry

Creates a registry.

Example

azure::registry registry-example
    name: "registry-example"
    sku: "Standard"
    resource-group: $(azure::resource-group resource-group-registry-example)
    public-network-access: false
    admin-user-enabled: false

    tags: {
        Name: "registry-example"
    }
end

Attributes

Attribute Description
name The name of the registry. (Required)
resource-group The resource group under which the registry will reside. (Required)
sku The type of sku. Valid values are Standard, Premium or Basic. (Required)
admin-user-enabled If set to true enables admin user for the registry. Defaults to false.
public-network-access If set to true enables public network access to this registry. Defaults to true.
tags map The tags for the registry.
webhook set A set of webhooks for the registry.

Outputs

Attribute Description
id The id of the registry.
creation-date The creation date of the registry.
login-server-url The login server url of the registry.