RegistryWebook
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 US",
});
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/v3/go/azure/containerservice"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
rg, err := core.NewResourceGroup(ctx, "rg", &core.ResourceGroupArgs{
Location: pulumi.String("West US"),
})
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.Map{
"Content-Type": pulumi.String("application/json"),
},
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
rg = azure.core.ResourceGroup("rg", location="West US")
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",
})import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const rg = new azure.core.ResourceGroup("rg", {location: "West US"});
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",
},
});Deprecated: azure.containerservice.RegistryWebook has been deprecated in favor of azure.containerservice.RegistryWebhook
Create a RegistryWebook Resource
new RegistryWebook(name: string, args: RegistryWebookArgs, opts?: CustomResourceOptions);def RegistryWebook(resource_name, opts=None, actions=None, custom_headers=None, location=None, name=None, registry_name=None, resource_group_name=None, scope=None, service_uri=None, status=None, tags=None, __props__=None);func NewRegistryWebook(ctx *Context, name string, args RegistryWebookArgs, opts ...ResourceOption) (*RegistryWebook, error)public RegistryWebook(string name, RegistryWebookArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args RegistryWebookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegistryWebookArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegistryWebookArgs
- The arguments to resource properties.
- opts 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 Programming Model docs.
Inputs
The RegistryWebook 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- Registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- Resource
Group stringName 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 string Specifies the service URI for the Webhook to post notifications.
- Custom
Headers 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- Status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- 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- Registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- Resource
Group stringName 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 string Specifies the service URI for the Webhook to post notifications.
- Custom
Headers 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- Status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- 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- registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- resource
Group stringName 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 string Specifies the service URI for the Webhook to post notifications.
- custom
Headers {[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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- {[key: string]: string}
- actions List[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_ strname 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 Dict[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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- status str
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- Dict[str, str]
Outputs
All input properties are implicitly available as output properties. Additionally, the RegistryWebook resource produces the following output properties:
Look up an 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): RegistryWebookstatic get(resource_name, id, opts=None, actions=None, custom_headers=None, location=None, name=None, registry_name=None, resource_group_name=None, scope=None, service_uri=None, status=None, tags=None, __props__=None);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)- 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.
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- Custom
Headers 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.
- Registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- Resource
Group stringName 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- Service
Uri string Specifies the service URI for the Webhook to post notifications.
- Status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- 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- Custom
Headers 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.
- Registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- Resource
Group stringName 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- Service
Uri string Specifies the service URI for the Webhook to post notifications.
- Status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- 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- custom
Headers {[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.
- registry
Name string The Name of Container registry this Webhook belongs to. Changing this forces a new resource to be created.
- resource
Group stringName 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo:latest. Empty means all events.- service
Uri string Specifies the service URI for the Webhook to post notifications.
- status string
Specifies if this Webhook triggers notifications or not. Valid values:
enabledanddisabled. Default isenabled.- {[key: string]: string}
- actions List[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 Dict[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_ strname 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 repositoryfoo.foo:barmeans events for ‘foo:bar’ only.foois equivalent tofoo: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:
enabledanddisabled. Default isenabled.- Dict[str, str]
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.