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

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages an Azure Container Registry Webhook.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var rg = new Azure.Core.ResourceGroup("rg", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var acr = new Azure.ContainerService.Registry("acr", new Azure.ContainerService.RegistryArgs
            {
                ResourceGroupName = rg.Name,
                Location = rg.Location,
                Sku = "Standard",
                AdminEnabled = false,
            });
            var webhook = new Azure.ContainerService.RegistryWebhook("webhook", new Azure.ContainerService.RegistryWebhookArgs
            {
                ResourceGroupName = rg.Name,
                RegistryName = acr.Name,
                Location = rg.Location,
                ServiceUri = "https://mywebhookreceiver.example/mytag",
                Status = "enabled",
                Scope = "mytag:*",
                Actions = 
                {
                    "push",
                },
                CustomHeaders = 
                {
                    { "Content-Type", "application/json" },
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/containerservice"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		rg, err := core.NewResourceGroup(ctx, "rg", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		acr, err := containerservice.NewRegistry(ctx, "acr", &containerservice.RegistryArgs{
    			ResourceGroupName: rg.Name,
    			Location:          rg.Location,
    			Sku:               pulumi.String("Standard"),
    			AdminEnabled:      pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = containerservice.NewRegistryWebhook(ctx, "webhook", &containerservice.RegistryWebhookArgs{
    			ResourceGroupName: rg.Name,
    			RegistryName:      acr.Name,
    			Location:          rg.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
    	})
    }
    

    Example coming soon!

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

    Example coming soon!

    Create RegistryWebhook Resource

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

    Constructor syntax

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

    Parameters

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

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var registryWebhookResource = new Azure.ContainerService.RegistryWebhook("registryWebhookResource", new()
    {
        Actions = new[]
        {
            "string",
        },
        RegistryName = "string",
        ResourceGroupName = "string",
        ServiceUri = "string",
        CustomHeaders = 
        {
            { "string", "string" },
        },
        Location = "string",
        Name = "string",
        Scope = "string",
        Status = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := containerservice.NewRegistryWebhook(ctx, "registryWebhookResource", &containerservice.RegistryWebhookArgs{
    	Actions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RegistryName:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ServiceUri:        pulumi.String("string"),
    	CustomHeaders: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Scope:    pulumi.String("string"),
    	Status:   pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var registryWebhookResource = new RegistryWebhook("registryWebhookResource", RegistryWebhookArgs.builder()
        .actions("string")
        .registryName("string")
        .resourceGroupName("string")
        .serviceUri("string")
        .customHeaders(Map.of("string", "string"))
        .location("string")
        .name("string")
        .scope("string")
        .status("string")
        .tags(Map.of("string", "string"))
        .build());
    
    registry_webhook_resource = azure.containerservice.RegistryWebhook("registryWebhookResource",
        actions=["string"],
        registry_name="string",
        resource_group_name="string",
        service_uri="string",
        custom_headers={
            "string": "string",
        },
        location="string",
        name="string",
        scope="string",
        status="string",
        tags={
            "string": "string",
        })
    
    const registryWebhookResource = new azure.containerservice.RegistryWebhook("registryWebhookResource", {
        actions: ["string"],
        registryName: "string",
        resourceGroupName: "string",
        serviceUri: "string",
        customHeaders: {
            string: "string",
        },
        location: "string",
        name: "string",
        scope: "string",
        status: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:containerservice:RegistryWebhook
    properties:
        actions:
            - string
        customHeaders:
            string: string
        location: string
        name: string
        registryName: string
        resourceGroupName: string
        scope: string
        serviceUri: string
        status: string
        tags:
            string: string
    

    RegistryWebhook 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 RegistryWebhook resource accepts the following input properties:

    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
    RegistryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    ResourceGroupName 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 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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of 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.
    Status string
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    Tags Dictionary<string, string>
    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
    RegistryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    ResourceGroupName 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 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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of 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.
    Status string
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    Tags map[string]string
    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
    registryName String
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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 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 String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of 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.
    status String
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    tags Map<String,String>
    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
    registryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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 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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of 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.
    status string
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    tags {[key: string]: string}
    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
    registry_name str
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resource_group_name 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 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 str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of 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.
    status str
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    tags Mapping[str, str]
    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
    registryName String
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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 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 String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of 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.
    status String
    Specifies if this Webhook triggers notifications or not. Valid values: enabled and disabled. Default is enabled.
    tags Map<String>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RegistryWebhook 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 RegistryWebhook Resource

    Get an existing RegistryWebhook 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?: RegistryWebhookState, opts?: CustomResourceOptions): RegistryWebhook
    @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) -> RegistryWebhook
    func GetRegistryWebhook(ctx *Context, name string, id IDInput, state *RegistryWebhookState, opts ...ResourceOption) (*RegistryWebhook, error)
    public static RegistryWebhook Get(string name, Input<string> id, RegistryWebhookState? state, CustomResourceOptions? opts = null)
    public static RegistryWebhook get(String name, Output<String> id, RegistryWebhookState state, CustomResourceOptions options)
    resources:  _:    type: azure:containerservice:RegistryWebhook    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    RegistryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    ResourceGroupName 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.
    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>
    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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    RegistryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    ResourceGroupName 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.
    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
    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 String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    registryName String
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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.
    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>
    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 string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    registryName string
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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.
    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}
    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 str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    registry_name str
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resource_group_name 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.
    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]
    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 String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Container Registry Webhook. Changing this forces a new resource to be created.
    registryName String
    The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
    resourceGroupName 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.
    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>

    Import

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

     $ pulumi import azure:containerservice/registryWebhook:RegistryWebhook example /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mygroup1/providers/Microsoft.ContainerRegistry/registries/myregistry1/webhooks/mywebhook1
    

    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.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.