1. Packages
  2. Azure Classic
  3. API Docs
  4. containerservice
  5. RegistryWebook

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.containerservice.RegistryWebook

Explore with Pulumi AI

Deprecated: azure.containerservice.RegistryWebook has been deprecated in favor of azure.containerservice.RegistryWebhook

Manages an Azure Container Registry Webhook.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const acr = new azure.containerservice.Registry("acr", {
    name: "containerRegistry1",
    resourceGroupName: example.name,
    location: example.location,
    sku: "Standard",
    adminEnabled: false,
});
const webhook = new azure.containerservice.RegistryWebhook("webhook", {
    name: "mywebhook",
    resourceGroupName: example.name,
    registryName: acr.name,
    location: example.location,
    serviceUri: "https://mywebhookreceiver.example/mytag",
    status: "enabled",
    scope: "mytag:*",
    actions: ["push"],
    customHeaders: {
        "Content-Type": "application/json",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
acr = azure.containerservice.Registry("acr",
    name="containerRegistry1",
    resource_group_name=example.name,
    location=example.location,
    sku="Standard",
    admin_enabled=False)
webhook = azure.containerservice.RegistryWebhook("webhook",
    name="mywebhook",
    resource_group_name=example.name,
    registry_name=acr.name,
    location=example.location,
    service_uri="https://mywebhookreceiver.example/mytag",
    status="enabled",
    scope="mytag:*",
    actions=["push"],
    custom_headers={
        "Content-Type": "application/json",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/containerservice"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		acr, err := containerservice.NewRegistry(ctx, "acr", &containerservice.RegistryArgs{
			Name:              pulumi.String("containerRegistry1"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			Sku:               pulumi.String("Standard"),
			AdminEnabled:      pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		_, err = containerservice.NewRegistryWebhook(ctx, "webhook", &containerservice.RegistryWebhookArgs{
			Name:              pulumi.String("mywebhook"),
			ResourceGroupName: example.Name,
			RegistryName:      acr.Name,
			Location:          example.Location,
			ServiceUri:        pulumi.String("https://mywebhookreceiver.example/mytag"),
			Status:            pulumi.String("enabled"),
			Scope:             pulumi.String("mytag:*"),
			Actions: pulumi.StringArray{
				pulumi.String("push"),
			},
			CustomHeaders: pulumi.StringMap{
				"Content-Type": pulumi.String("application/json"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var acr = new Azure.ContainerService.Registry("acr", new()
    {
        Name = "containerRegistry1",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Sku = "Standard",
        AdminEnabled = false,
    });

    var webhook = new Azure.ContainerService.RegistryWebhook("webhook", new()
    {
        Name = "mywebhook",
        ResourceGroupName = example.Name,
        RegistryName = acr.Name,
        Location = example.Location,
        ServiceUri = "https://mywebhookreceiver.example/mytag",
        Status = "enabled",
        Scope = "mytag:*",
        Actions = new[]
        {
            "push",
        },
        CustomHeaders = 
        {
            { "Content-Type", "application/json" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.containerservice.Registry;
import com.pulumi.azure.containerservice.RegistryArgs;
import com.pulumi.azure.containerservice.RegistryWebhook;
import com.pulumi.azure.containerservice.RegistryWebhookArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var acr = new Registry("acr", RegistryArgs.builder()
            .name("containerRegistry1")
            .resourceGroupName(example.name())
            .location(example.location())
            .sku("Standard")
            .adminEnabled(false)
            .build());

        var webhook = new RegistryWebhook("webhook", RegistryWebhookArgs.builder()
            .name("mywebhook")
            .resourceGroupName(example.name())
            .registryName(acr.name())
            .location(example.location())
            .serviceUri("https://mywebhookreceiver.example/mytag")
            .status("enabled")
            .scope("mytag:*")
            .actions("push")
            .customHeaders(Map.of("Content-Type", "application/json"))
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  acr:
    type: azure:containerservice:Registry
    properties:
      name: containerRegistry1
      resourceGroupName: ${example.name}
      location: ${example.location}
      sku: Standard
      adminEnabled: false
  webhook:
    type: azure:containerservice:RegistryWebhook
    properties:
      name: mywebhook
      resourceGroupName: ${example.name}
      registryName: ${acr.name}
      location: ${example.location}
      serviceUri: https://mywebhookreceiver.example/mytag
      status: enabled
      scope: mytag:*
      actions:
        - push
      customHeaders:
        Content-Type: application/json
Copy

Create RegistryWebook Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new RegistryWebook(name: string, args: RegistryWebookArgs, opts?: CustomResourceOptions);
@overload
def RegistryWebook(resource_name: str,
                   args: RegistryWebookArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def RegistryWebook(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   actions: Optional[Sequence[str]] = None,
                   custom_headers: Optional[Mapping[str, str]] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   registry_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   scope: Optional[str] = None,
                   service_uri: Optional[str] = None,
                   status: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
func NewRegistryWebook(ctx *Context, name string, args RegistryWebookArgs, opts ...ResourceOption) (*RegistryWebook, error)
public RegistryWebook(string name, RegistryWebookArgs args, CustomResourceOptions? opts = null)
public RegistryWebook(String name, RegistryWebookArgs args)
public RegistryWebook(String name, RegistryWebookArgs args, CustomResourceOptions options)
type: azure:containerservice:RegistryWebook
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RegistryWebookArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RegistryWebookArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RegistryWebookArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RegistryWebookArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RegistryWebookArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

RegistryWebook Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The RegistryWebook resource accepts the following input properties:

Actions This property is required. List<string>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
RegistryName
This property is required.
Changes to this property will trigger replacement.
string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
ServiceUri This property is required. string
Specifies the service URI for the Webhook to post notifications.
CustomHeaders Dictionary<string, string>
Custom headers that will be added to the webhook notifications request.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
Scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
Status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
Actions This property is required. []string
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
RegistryName
This property is required.
Changes to this property will trigger replacement.
string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
ServiceUri This property is required. string
Specifies the service URI for the Webhook to post notifications.
CustomHeaders map[string]string
Custom headers that will be added to the webhook notifications request.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
Scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
Status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
Tags map[string]string
A mapping of tags to assign to the resource.
actions This property is required. List<String>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
registryName
This property is required.
Changes to this property will trigger replacement.
String
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
serviceUri This property is required. String
Specifies the service URI for the Webhook to post notifications.
customHeaders Map<String,String>
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
scope String
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
status String
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Map<String,String>
A mapping of tags to assign to the resource.
actions This property is required. string[]
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
registryName
This property is required.
Changes to this property will trigger replacement.
string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
serviceUri This property is required. string
Specifies the service URI for the Webhook to post notifications.
customHeaders {[key: string]: string}
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
actions This property is required. Sequence[str]
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
registry_name
This property is required.
Changes to this property will trigger replacement.
str
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
service_uri This property is required. str
Specifies the service URI for the Webhook to post notifications.
custom_headers Mapping[str, str]
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
scope str
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
status str
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
actions This property is required. List<String>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
registryName
This property is required.
Changes to this property will trigger replacement.
String
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
serviceUri This property is required. String
Specifies the service URI for the Webhook to post notifications.
customHeaders Map<String>
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
scope String
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
status String
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Map<String>
A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the RegistryWebook resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing RegistryWebook Resource

Get an existing RegistryWebook resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: RegistryWebookState, opts?: CustomResourceOptions): RegistryWebook
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        actions: Optional[Sequence[str]] = None,
        custom_headers: Optional[Mapping[str, str]] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        registry_name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        scope: Optional[str] = None,
        service_uri: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> RegistryWebook
func GetRegistryWebook(ctx *Context, name string, id IDInput, state *RegistryWebookState, opts ...ResourceOption) (*RegistryWebook, error)
public static RegistryWebook Get(string name, Input<string> id, RegistryWebookState? state, CustomResourceOptions? opts = null)
public static RegistryWebook get(String name, Output<String> id, RegistryWebookState state, CustomResourceOptions options)
resources:  _:    type: azure:containerservice:RegistryWebook    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Actions List<string>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
CustomHeaders Dictionary<string, string>
Custom headers that will be added to the webhook notifications request.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
RegistryName Changes to this property will trigger replacement. string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
Scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
ServiceUri string
Specifies the service URI for the Webhook to post notifications.
Status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
Actions []string
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
CustomHeaders map[string]string
Custom headers that will be added to the webhook notifications request.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
RegistryName Changes to this property will trigger replacement. string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
Scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
ServiceUri string
Specifies the service URI for the Webhook to post notifications.
Status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
Tags map[string]string
A mapping of tags to assign to the resource.
actions List<String>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
customHeaders Map<String,String>
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
registryName Changes to this property will trigger replacement. String
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
scope String
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
serviceUri String
Specifies the service URI for the Webhook to post notifications.
status String
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Map<String,String>
A mapping of tags to assign to the resource.
actions string[]
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
customHeaders {[key: string]: string}
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
registryName Changes to this property will trigger replacement. string
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
scope string
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
serviceUri string
Specifies the service URI for the Webhook to post notifications.
status string
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
actions Sequence[str]
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
custom_headers Mapping[str, str]
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
registry_name Changes to this property will trigger replacement. str
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
scope str
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
service_uri str
Specifies the service URI for the Webhook to post notifications.
status str
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
actions List<String>
A list of actions that trigger the Webhook to post notifications. At least one action needs to be specified. Valid values are: push, delete, quarantine, chart_push, chart_delete
customHeaders Map<String>
Custom headers that will be added to the webhook notifications request.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Container Registry Webhook. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
registryName Changes to this property will trigger replacement. String
The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Container Registry Webhook. Changing this forces a new resource to be created.
scope String
Specifies the scope of repositories that can trigger an event. For example, foo:* means events for all tags under repository foo. foo:bar means events for 'foo:bar' only. foo is equivalent to foo:latest. Empty means all events. Defaults to "".
serviceUri String
Specifies the service URI for the Webhook to post notifications.
status String
Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
tags Map<String>
A mapping of tags to assign to the resource.

Import

Container Registry Webhooks can be imported using the resource id, e.g.

$ pulumi import azure:containerservice/registryWebook:RegistryWebook example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.ContainerRegistry/registries/myregistry1/webHooks/mywebhook1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.