We recommend using Azure Native.
azure.automation.Webhook
Explore with Pulumi AI
Manages an Automation Runbook’s 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 exampleAccount = new azure.automation.Account("example", {
name: "account1",
location: example.location,
resourceGroupName: example.name,
skuName: "Basic",
});
const exampleRunBook = new azure.automation.RunBook("example", {
name: "Get-AzureVMTutorial",
location: example.location,
resourceGroupName: example.name,
automationAccountName: exampleAccount.name,
logVerbose: true,
logProgress: true,
description: "This is an example runbook",
runbookType: "PowerShellWorkflow",
publishContentLink: {
uri: "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
},
});
const exampleWebhook = new azure.automation.Webhook("example", {
name: "TestRunbook_webhook",
resourceGroupName: example.name,
automationAccountName: exampleAccount.name,
expiryTime: "2021-12-31T00:00:00Z",
enabled: true,
runbookName: exampleRunBook.name,
parameters: {
input: "parameter",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.automation.Account("example",
name="account1",
location=example.location,
resource_group_name=example.name,
sku_name="Basic")
example_run_book = azure.automation.RunBook("example",
name="Get-AzureVMTutorial",
location=example.location,
resource_group_name=example.name,
automation_account_name=example_account.name,
log_verbose=True,
log_progress=True,
description="This is an example runbook",
runbook_type="PowerShellWorkflow",
publish_content_link=azure.automation.RunBookPublishContentLinkArgs(
uri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
))
example_webhook = azure.automation.Webhook("example",
name="TestRunbook_webhook",
resource_group_name=example.name,
automation_account_name=example_account.name,
expiry_time="2021-12-31T00:00:00Z",
enabled=True,
runbook_name=example_run_book.name,
parameters={
"input": "parameter",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/automation"
"github.com/pulumi/pulumi-azure/sdk/v5/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
}
exampleAccount, err := automation.NewAccount(ctx, "example", &automation.AccountArgs{
Name: pulumi.String("account1"),
Location: example.Location,
ResourceGroupName: example.Name,
SkuName: pulumi.String("Basic"),
})
if err != nil {
return err
}
exampleRunBook, err := automation.NewRunBook(ctx, "example", &automation.RunBookArgs{
Name: pulumi.String("Get-AzureVMTutorial"),
Location: example.Location,
ResourceGroupName: example.Name,
AutomationAccountName: exampleAccount.Name,
LogVerbose: pulumi.Bool(true),
LogProgress: pulumi.Bool(true),
Description: pulumi.String("This is an example runbook"),
RunbookType: pulumi.String("PowerShellWorkflow"),
PublishContentLink: &automation.RunBookPublishContentLinkArgs{
Uri: pulumi.String("https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1"),
},
})
if err != nil {
return err
}
_, err = automation.NewWebhook(ctx, "example", &automation.WebhookArgs{
Name: pulumi.String("TestRunbook_webhook"),
ResourceGroupName: example.Name,
AutomationAccountName: exampleAccount.Name,
ExpiryTime: pulumi.String("2021-12-31T00:00:00Z"),
Enabled: pulumi.Bool(true),
RunbookName: exampleRunBook.Name,
Parameters: pulumi.StringMap{
"input": pulumi.String("parameter"),
},
})
if err != nil {
return err
}
return nil
})
}
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 exampleAccount = new Azure.Automation.Account("example", new()
{
Name = "account1",
Location = example.Location,
ResourceGroupName = example.Name,
SkuName = "Basic",
});
var exampleRunBook = new Azure.Automation.RunBook("example", new()
{
Name = "Get-AzureVMTutorial",
Location = example.Location,
ResourceGroupName = example.Name,
AutomationAccountName = exampleAccount.Name,
LogVerbose = true,
LogProgress = true,
Description = "This is an example runbook",
RunbookType = "PowerShellWorkflow",
PublishContentLink = new Azure.Automation.Inputs.RunBookPublishContentLinkArgs
{
Uri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
},
});
var exampleWebhook = new Azure.Automation.Webhook("example", new()
{
Name = "TestRunbook_webhook",
ResourceGroupName = example.Name,
AutomationAccountName = exampleAccount.Name,
ExpiryTime = "2021-12-31T00:00:00Z",
Enabled = true,
RunbookName = exampleRunBook.Name,
Parameters =
{
{ "input", "parameter" },
},
});
});
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.automation.Account;
import com.pulumi.azure.automation.AccountArgs;
import com.pulumi.azure.automation.RunBook;
import com.pulumi.azure.automation.RunBookArgs;
import com.pulumi.azure.automation.inputs.RunBookPublishContentLinkArgs;
import com.pulumi.azure.automation.Webhook;
import com.pulumi.azure.automation.WebhookArgs;
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 exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("account1")
.location(example.location())
.resourceGroupName(example.name())
.skuName("Basic")
.build());
var exampleRunBook = new RunBook("exampleRunBook", RunBookArgs.builder()
.name("Get-AzureVMTutorial")
.location(example.location())
.resourceGroupName(example.name())
.automationAccountName(exampleAccount.name())
.logVerbose("true")
.logProgress("true")
.description("This is an example runbook")
.runbookType("PowerShellWorkflow")
.publishContentLink(RunBookPublishContentLinkArgs.builder()
.uri("https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1")
.build())
.build());
var exampleWebhook = new Webhook("exampleWebhook", WebhookArgs.builder()
.name("TestRunbook_webhook")
.resourceGroupName(example.name())
.automationAccountName(exampleAccount.name())
.expiryTime("2021-12-31T00:00:00Z")
.enabled(true)
.runbookName(exampleRunBook.name())
.parameters(Map.of("input", "parameter"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:automation:Account
name: example
properties:
name: account1
location: ${example.location}
resourceGroupName: ${example.name}
skuName: Basic
exampleRunBook:
type: azure:automation:RunBook
name: example
properties:
name: Get-AzureVMTutorial
location: ${example.location}
resourceGroupName: ${example.name}
automationAccountName: ${exampleAccount.name}
logVerbose: 'true'
logProgress: 'true'
description: This is an example runbook
runbookType: PowerShellWorkflow
publishContentLink:
uri: https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1
exampleWebhook:
type: azure:automation:Webhook
name: example
properties:
name: TestRunbook_webhook
resourceGroupName: ${example.name}
automationAccountName: ${exampleAccount.name}
expiryTime: 2021-12-31T00:00:00Z
enabled: true
runbookName: ${exampleRunBook.name}
parameters:
input: parameter
Create Webhook Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Webhook(name: string, args: WebhookArgs, opts?: CustomResourceOptions);
@overload
def Webhook(resource_name: str,
args: WebhookArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Webhook(resource_name: str,
opts: Optional[ResourceOptions] = None,
automation_account_name: Optional[str] = None,
expiry_time: Optional[str] = None,
resource_group_name: Optional[str] = None,
runbook_name: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
run_on_worker_group: Optional[str] = None,
uri: Optional[str] = None)
func NewWebhook(ctx *Context, name string, args WebhookArgs, opts ...ResourceOption) (*Webhook, error)
public Webhook(string name, WebhookArgs args, CustomResourceOptions? opts = null)
public Webhook(String name, WebhookArgs args)
public Webhook(String name, WebhookArgs args, CustomResourceOptions options)
type: azure:automation:Webhook
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 WebhookArgs
- 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 WebhookArgs
- 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 WebhookArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebhookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WebhookArgs
- 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 webhookResource = new Azure.Automation.Webhook("webhookResource", new()
{
AutomationAccountName = "string",
ExpiryTime = "string",
ResourceGroupName = "string",
RunbookName = "string",
Enabled = false,
Name = "string",
Parameters =
{
{ "string", "string" },
},
RunOnWorkerGroup = "string",
Uri = "string",
});
example, err := automation.NewWebhook(ctx, "webhookResource", &automation.WebhookArgs{
AutomationAccountName: pulumi.String("string"),
ExpiryTime: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
RunbookName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
RunOnWorkerGroup: pulumi.String("string"),
Uri: pulumi.String("string"),
})
var webhookResource = new Webhook("webhookResource", WebhookArgs.builder()
.automationAccountName("string")
.expiryTime("string")
.resourceGroupName("string")
.runbookName("string")
.enabled(false)
.name("string")
.parameters(Map.of("string", "string"))
.runOnWorkerGroup("string")
.uri("string")
.build());
webhook_resource = azure.automation.Webhook("webhookResource",
automation_account_name="string",
expiry_time="string",
resource_group_name="string",
runbook_name="string",
enabled=False,
name="string",
parameters={
"string": "string",
},
run_on_worker_group="string",
uri="string")
const webhookResource = new azure.automation.Webhook("webhookResource", {
automationAccountName: "string",
expiryTime: "string",
resourceGroupName: "string",
runbookName: "string",
enabled: false,
name: "string",
parameters: {
string: "string",
},
runOnWorkerGroup: "string",
uri: "string",
});
type: azure:automation:Webhook
properties:
automationAccountName: string
enabled: false
expiryTime: string
name: string
parameters:
string: string
resourceGroupName: string
runOnWorkerGroup: string
runbookName: string
uri: string
Webhook Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Webhook resource accepts the following input properties:
- Automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- Expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- Runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- Enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - Name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- Parameters Dictionary<string, string>
- Map of input parameters passed to runbook.
- Run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- Uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- Automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- Expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- Runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- Enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - Name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- Parameters map[string]string
- Map of input parameters passed to runbook.
- Run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- Uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account StringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- expiry
Time String - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- runbook
Name String - Name of the Automation Runbook to execute by Webhook.
- enabled Boolean
- Controls if Webhook is enabled. Defaults to
true
. - name String
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Map<String,String>
- Map of input parameters passed to runbook.
- run
On StringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- uri String
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- enabled boolean
- Controls if Webhook is enabled. Defaults to
true
. - name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters {[key: string]: string}
- Map of input parameters passed to runbook.
- run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation_
account_ strname - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- expiry_
time str - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- runbook_
name str - Name of the Automation Runbook to execute by Webhook.
- enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - name str
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Mapping[str, str]
- Map of input parameters passed to runbook.
- run_
on_ strworker_ group - Name of the hybrid worker group the Webhook job will run on.
- uri str
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account StringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- expiry
Time String - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- runbook
Name String - Name of the Automation Runbook to execute by Webhook.
- enabled Boolean
- Controls if Webhook is enabled. Defaults to
true
. - name String
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Map<String>
- Map of input parameters passed to runbook.
- run
On StringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- uri String
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the Webhook 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 Webhook Resource
Get an existing Webhook 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?: WebhookState, opts?: CustomResourceOptions): Webhook
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
automation_account_name: Optional[str] = None,
enabled: Optional[bool] = None,
expiry_time: Optional[str] = None,
name: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
resource_group_name: Optional[str] = None,
run_on_worker_group: Optional[str] = None,
runbook_name: Optional[str] = None,
uri: Optional[str] = None) -> Webhook
func GetWebhook(ctx *Context, name string, id IDInput, state *WebhookState, opts ...ResourceOption) (*Webhook, error)
public static Webhook Get(string name, Input<string> id, WebhookState? state, CustomResourceOptions? opts = null)
public static Webhook get(String name, Output<String> id, WebhookState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- Enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - Expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- Parameters Dictionary<string, string>
- Map of input parameters passed to runbook.
- Resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- Run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- Runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- Uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- Automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- Enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - Expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- Parameters map[string]string
- Map of input parameters passed to runbook.
- Resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- Run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- Runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- Uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account StringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- enabled Boolean
- Controls if Webhook is enabled. Defaults to
true
. - expiry
Time String - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Map<String,String>
- Map of input parameters passed to runbook.
- resource
Group StringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- run
On StringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- runbook
Name String - Name of the Automation Runbook to execute by Webhook.
- uri String
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account stringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- enabled boolean
- Controls if Webhook is enabled. Defaults to
true
. - expiry
Time string - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters {[key: string]: string}
- Map of input parameters passed to runbook.
- resource
Group stringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- run
On stringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- runbook
Name string - Name of the Automation Runbook to execute by Webhook.
- uri string
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation_
account_ strname - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- enabled bool
- Controls if Webhook is enabled. Defaults to
true
. - expiry_
time str - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Mapping[str, str]
- Map of input parameters passed to runbook.
- resource_
group_ strname - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- run_
on_ strworker_ group - Name of the hybrid worker group the Webhook job will run on.
- runbook_
name str - Name of the Automation Runbook to execute by Webhook.
- uri str
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
- automation
Account StringName - The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
- enabled Boolean
- Controls if Webhook is enabled. Defaults to
true
. - expiry
Time String - Timestamp when the webhook expires. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Webhook. Changing this forces a new resource to be created.
- parameters Map<String>
- Map of input parameters passed to runbook.
- resource
Group StringName - The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
- run
On StringWorker Group - Name of the hybrid worker group the Webhook job will run on.
- runbook
Name String - Name of the Automation Runbook to execute by Webhook.
- uri String
- URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
Import
Automation Webhooks can be imported using the resource id
, e.g.
$ pulumi import azure:automation/webhook:Webhook TestRunbook_webhook /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/webHooks/TestRunbook_webhook
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.