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,PremiumorBasic. (Required) | 
| admin-user-enabled | If set to trueenables admin user for the registry. Defaults tofalse. | 
| public-network-access | If set to trueenables public network access to this registry. Defaults totrue. | 
| 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. |