wavefront.AlertTarget
Explore with Pulumi AI
Provides a wavefront Alert Target resource. This allows alert targets to created, updated, and deleted.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Wavefront = Pulumi.Wavefront;
return await Deployment.RunAsync(() =>
{
var testTarget = new Wavefront.AlertTarget("testTarget", new()
{
ContentType = "application/json",
CustomHeaders =
{
{ "Testing", "true" },
},
Description = "Test target",
Method = "WEBHOOK",
Recipient = "https://hooks.slack.com/services/test/me",
Template = "{}",
Triggers = new[]
{
"ALERT_OPENED",
"ALERT_RESOLVED",
},
});
});
package main
import (
"github.com/pulumi/pulumi-wavefront/sdk/v3/go/wavefront"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := wavefront.NewAlertTarget(ctx, "testTarget", &wavefront.AlertTargetArgs{
ContentType: pulumi.String("application/json"),
CustomHeaders: pulumi.StringMap{
"Testing": pulumi.String("true"),
},
Description: pulumi.String("Test target"),
Method: pulumi.String("WEBHOOK"),
Recipient: pulumi.String("https://hooks.slack.com/services/test/me"),
Template: pulumi.String("{}"),
Triggers: pulumi.StringArray{
pulumi.String("ALERT_OPENED"),
pulumi.String("ALERT_RESOLVED"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.wavefront.AlertTarget;
import com.pulumi.wavefront.AlertTargetArgs;
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 testTarget = new AlertTarget("testTarget", AlertTargetArgs.builder()
.contentType("application/json")
.customHeaders(Map.of("Testing", "true"))
.description("Test target")
.method("WEBHOOK")
.recipient("https://hooks.slack.com/services/test/me")
.template("{}")
.triggers(
"ALERT_OPENED",
"ALERT_RESOLVED")
.build());
}
}
import pulumi
import pulumi_wavefront as wavefront
test_target = wavefront.AlertTarget("testTarget",
content_type="application/json",
custom_headers={
"Testing": "true",
},
description="Test target",
method="WEBHOOK",
recipient="https://hooks.slack.com/services/test/me",
template="{}",
triggers=[
"ALERT_OPENED",
"ALERT_RESOLVED",
])
import * as pulumi from "@pulumi/pulumi";
import * as wavefront from "@pulumi/wavefront";
const testTarget = new wavefront.AlertTarget("testTarget", {
contentType: "application/json",
customHeaders: {
Testing: "true",
},
description: "Test target",
method: "WEBHOOK",
recipient: "https://hooks.slack.com/services/test/me",
template: "{}",
triggers: [
"ALERT_OPENED",
"ALERT_RESOLVED",
],
});
resources:
testTarget:
type: wavefront:AlertTarget
properties:
contentType: application/json
customHeaders:
Testing: 'true'
description: Test target
method: WEBHOOK
recipient: https://hooks.slack.com/services/test/me
template: '{}'
triggers:
- ALERT_OPENED
- ALERT_RESOLVED
Create AlertTarget Resource
new AlertTarget(name: string, args: AlertTargetArgs, opts?: CustomResourceOptions);
@overload
def AlertTarget(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
custom_headers: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
email_subject: Optional[str] = None,
is_html_content: Optional[bool] = None,
method: Optional[str] = None,
name: Optional[str] = None,
recipient: Optional[str] = None,
routes: Optional[Sequence[AlertTargetRouteArgs]] = None,
template: Optional[str] = None,
triggers: Optional[Sequence[str]] = None)
@overload
def AlertTarget(resource_name: str,
args: AlertTargetArgs,
opts: Optional[ResourceOptions] = None)
func NewAlertTarget(ctx *Context, name string, args AlertTargetArgs, opts ...ResourceOption) (*AlertTarget, error)
public AlertTarget(string name, AlertTargetArgs args, CustomResourceOptions? opts = null)
public AlertTarget(String name, AlertTargetArgs args)
public AlertTarget(String name, AlertTargetArgs args, CustomResourceOptions options)
type: wavefront:AlertTarget
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertTargetArgs
- 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 AlertTargetArgs
- 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 AlertTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlertTargetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AlertTarget 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 AlertTarget resource accepts the following input properties:
- Description string
Description describing this alert target.
- Recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- Triggers List<string>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- Content
Type string The value of the
Content-Type
header of the webhook.- Custom
Headers Dictionary<string, string> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- Email
Subject string The subject title of an email notification target.
- Is
Html boolContent Determine whether the email alert content is sent as HTML or text.
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Name string
The name of the alert target as it is displayed in Wavefront.
- Routes
List<Alert
Target Route> List of routing targets that this alert target will notify. See Route
- Description string
Description describing this alert target.
- Recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- Triggers []string
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- Content
Type string The value of the
Content-Type
header of the webhook.- Custom
Headers map[string]string A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- Email
Subject string The subject title of an email notification target.
- Is
Html boolContent Determine whether the email alert content is sent as HTML or text.
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Name string
The name of the alert target as it is displayed in Wavefront.
- Routes
[]Alert
Target Route Args List of routing targets that this alert target will notify. See Route
- description String
Description describing this alert target.
- recipient String
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- template String
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers List<String>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- content
Type String The value of the
Content-Type
header of the webhook.- custom
Headers Map<String,String> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- email
Subject String The subject title of an email notification target.
- is
Html BooleanContent Determine whether the email alert content is sent as HTML or text.
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name String
The name of the alert target as it is displayed in Wavefront.
- routes
List<Alert
Target Route> List of routing targets that this alert target will notify. See Route
- description string
Description describing this alert target.
- recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers string[]
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- content
Type string The value of the
Content-Type
header of the webhook.- custom
Headers {[key: string]: string} A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- email
Subject string The subject title of an email notification target.
- is
Html booleanContent Determine whether the email alert content is sent as HTML or text.
- method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name string
The name of the alert target as it is displayed in Wavefront.
- routes
Alert
Target Route[] List of routing targets that this alert target will notify. See Route
- description str
Description describing this alert target.
- recipient str
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- template str
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers Sequence[str]
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- content_
type str The value of the
Content-Type
header of the webhook.- custom_
headers Mapping[str, str] A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- email_
subject str The subject title of an email notification target.
- is_
html_ boolcontent Determine whether the email alert content is sent as HTML or text.
- method str
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name str
The name of the alert target as it is displayed in Wavefront.
- routes
Sequence[Alert
Target Route Args] List of routing targets that this alert target will notify. See Route
- description String
Description describing this alert target.
- recipient String
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- template String
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers List<String>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.- content
Type String The value of the
Content-Type
header of the webhook.- custom
Headers Map<String> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- email
Subject String The subject title of an email notification target.
- is
Html BooleanContent Determine whether the email alert content is sent as HTML or text.
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name String
The name of the alert target as it is displayed in Wavefront.
- routes List<Property Map>
List of routing targets that this alert target will notify. See Route
Outputs
All input properties are implicitly available as output properties. Additionally, the AlertTarget resource produces the following output properties:
Look up Existing AlertTarget Resource
Get an existing AlertTarget 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?: AlertTargetState, opts?: CustomResourceOptions): AlertTarget
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
custom_headers: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
email_subject: Optional[str] = None,
is_html_content: Optional[bool] = None,
method: Optional[str] = None,
name: Optional[str] = None,
recipient: Optional[str] = None,
routes: Optional[Sequence[AlertTargetRouteArgs]] = None,
target_id: Optional[str] = None,
template: Optional[str] = None,
triggers: Optional[Sequence[str]] = None) -> AlertTarget
func GetAlertTarget(ctx *Context, name string, id IDInput, state *AlertTargetState, opts ...ResourceOption) (*AlertTarget, error)
public static AlertTarget Get(string name, Input<string> id, AlertTargetState? state, CustomResourceOptions? opts = null)
public static AlertTarget get(String name, Output<String> id, AlertTargetState 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.
- Content
Type string The value of the
Content-Type
header of the webhook.- Custom
Headers Dictionary<string, string> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- Description string
Description describing this alert target.
- Email
Subject string The subject title of an email notification target.
- Is
Html boolContent Determine whether the email alert content is sent as HTML or text.
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Name string
The name of the alert target as it is displayed in Wavefront.
- Recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Routes
List<Alert
Target Route> List of routing targets that this alert target will notify. See Route
- Target
Id string The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- Template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- Triggers List<string>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
- Content
Type string The value of the
Content-Type
header of the webhook.- Custom
Headers map[string]string A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- Description string
Description describing this alert target.
- Email
Subject string The subject title of an email notification target.
- Is
Html boolContent Determine whether the email alert content is sent as HTML or text.
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Name string
The name of the alert target as it is displayed in Wavefront.
- Recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Routes
[]Alert
Target Route Args List of routing targets that this alert target will notify. See Route
- Target
Id string The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- Template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- Triggers []string
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
- content
Type String The value of the
Content-Type
header of the webhook.- custom
Headers Map<String,String> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- description String
Description describing this alert target.
- email
Subject String The subject title of an email notification target.
- is
Html BooleanContent Determine whether the email alert content is sent as HTML or text.
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name String
The name of the alert target as it is displayed in Wavefront.
- recipient String
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- routes
List<Alert
Target Route> List of routing targets that this alert target will notify. See Route
- target
Id String The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- template String
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers List<String>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
- content
Type string The value of the
Content-Type
header of the webhook.- custom
Headers {[key: string]: string} A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- description string
Description describing this alert target.
- email
Subject string The subject title of an email notification target.
- is
Html booleanContent Determine whether the email alert content is sent as HTML or text.
- method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name string
The name of the alert target as it is displayed in Wavefront.
- recipient string
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- routes
Alert
Target Route[] List of routing targets that this alert target will notify. See Route
- target
Id string The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- template string
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers string[]
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
- content_
type str The value of the
Content-Type
header of the webhook.- custom_
headers Mapping[str, str] A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- description str
Description describing this alert target.
- email_
subject str The subject title of an email notification target.
- is_
html_ boolcontent Determine whether the email alert content is sent as HTML or text.
- method str
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name str
The name of the alert target as it is displayed in Wavefront.
- recipient str
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- routes
Sequence[Alert
Target Route Args] List of routing targets that this alert target will notify. See Route
- target_
id str The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- template str
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers Sequence[str]
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
- content
Type String The value of the
Content-Type
header of the webhook.- custom
Headers Map<String> A
string->string
map specifying the custom HTTP header key/value pairs that will be sent in the requests with a method ofWEBHOOK
.- description String
Description describing this alert target.
- email
Subject String The subject title of an email notification target.
- is
Html BooleanContent Determine whether the email alert content is sent as HTML or text.
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- name String
The name of the alert target as it is displayed in Wavefront.
- recipient String
The end point for the notification Target.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- routes List<Property Map>
List of routing targets that this alert target will notify. See Route
- target
Id String The target ID prefixed with
target:
for interpolating into a Wavefront Alert.- template String
A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
- triggers List<String>
A list of occurrences on which this webhook will be fired. Valid values are
ALERT_OPENED
,ALERT_UPDATED
,ALERT_RESOLVED
,ALERT_MAINTENANCE
,ALERT_SNOOZED
,ALERT_NO_DATA
,ALERT_NO_DATA_RESOLVED
,ALERT_NO_DATA_MAINTENANCE
.
Supporting Types
AlertTargetRoute, AlertTargetRouteArgs
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Target string
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Filter Dictionary<string, string>
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
- Method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- Target string
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- Filter map[string]string
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- target String
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- filter Map<String,String>
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
- method string
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- target string
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- filter {[key: string]: string}
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
- method str
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- target str
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- filter Mapping[str, str]
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
- method String
The notification method used for notification target. One of
WEBHOOK
,EMAIL
,PAGERDUTY
.- target String
(Required) The endpoint for the alert route.
EMAIL
: email address.PAGERDUTY
: PagerDuty routing key.WEBHOOK
: URL endpoint.- filter Map<String>
(Required) String that filters the route. Space delimited. Currently only allows a single key value pair. (e.g.
env prod
)
Import
Alert Targets can be imported using the id
, e.g.
$ pulumi import wavefront:index/alertTarget:AlertTarget alert_target abcdEFGhijKLMNO
Package Details
- Repository
- Wavefront pulumi/pulumi-wavefront
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
wavefront
Terraform Provider.