newrelic.synthetics.AlertCondition
Explore with Pulumi AI
Use this resource to create and manage synthetics alert conditions in New Relic.
WARNING: The
newrelic.synthetics.AlertCondition
resource is deprecated and will be removed in the next major release. The resource newrelic.NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query. For more details and examples on moving away from synthetics alert conditions to the NRQL based alternative, please check out this example.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as newrelic from "@pulumi/newrelic";
const foo = new newrelic.synthetics.AlertCondition("foo", {
policyId: fooNewrelicAlertPolicy.id,
name: "foo",
monitorId: fooNewrelicSyntheticsMonitor.id,
runbookUrl: "https://www.example.com",
});
import pulumi
import pulumi_newrelic as newrelic
foo = newrelic.synthetics.AlertCondition("foo",
policy_id=foo_newrelic_alert_policy["id"],
name="foo",
monitor_id=foo_newrelic_synthetics_monitor["id"],
runbook_url="https://www.example.com")
package main
import (
"github.com/pulumi/pulumi-newrelic/sdk/v5/go/newrelic/synthetics"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := synthetics.NewAlertCondition(ctx, "foo", &synthetics.AlertConditionArgs{
PolicyId: pulumi.Any(fooNewrelicAlertPolicy.Id),
Name: pulumi.String("foo"),
MonitorId: pulumi.Any(fooNewrelicSyntheticsMonitor.Id),
RunbookUrl: pulumi.String("https://www.example.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using NewRelic = Pulumi.NewRelic;
return await Deployment.RunAsync(() =>
{
var foo = new NewRelic.Synthetics.AlertCondition("foo", new()
{
PolicyId = fooNewrelicAlertPolicy.Id,
Name = "foo",
MonitorId = fooNewrelicSyntheticsMonitor.Id,
RunbookUrl = "https://www.example.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.newrelic.synthetics.AlertCondition;
import com.pulumi.newrelic.synthetics.AlertConditionArgs;
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 foo = new AlertCondition("foo", AlertConditionArgs.builder()
.policyId(fooNewrelicAlertPolicy.id())
.name("foo")
.monitorId(fooNewrelicSyntheticsMonitor.id())
.runbookUrl("https://www.example.com")
.build());
}
}
resources:
foo:
type: newrelic:synthetics:AlertCondition
properties:
policyId: ${fooNewrelicAlertPolicy.id}
name: foo
monitorId: ${fooNewrelicSyntheticsMonitor.id}
runbookUrl: https://www.example.com
Tags
Manage synthetics alert condition tags with newrelic.EntityTags
. For up-to-date documentation about the tagging resource, please check newrelic.EntityTags
import * as pulumi from "@pulumi/pulumi";
import * as newrelic from "@pulumi/newrelic";
const foo = new newrelic.AlertPolicy("foo", {name: "foo policy"});
const fooMonitor = new newrelic.synthetics.Monitor("foo", {
status: "ENABLED",
name: "foo monitor",
period: "EVERY_MINUTE",
uri: "https://www.one.newrelic.com",
type: "SIMPLE",
locationsPublics: ["AP_EAST_1"],
customHeaders: [{
name: "some_name",
value: "some_value",
}],
treatRedirectAsFailure: true,
validationString: "success",
bypassHeadRequest: true,
verifySsl: true,
tags: [{
key: "some_key",
values: ["some_value"],
}],
});
const fooAlertCondition = new newrelic.synthetics.AlertCondition("foo", {
policyId: foo.id,
name: "foo synthetics condition",
monitorId: fooMonitor.id,
runbookUrl: "https://www.example.com",
});
const myConditionEntityTags = new newrelic.EntityTags("my_condition_entity_tags", {
guid: fooAlertCondition.entityGuid,
tags: [
{
key: "my-key",
values: [
"my-value",
"my-other-value",
],
},
{
key: "my-key-2",
values: ["my-value-2"],
},
],
});
import pulumi
import pulumi_newrelic as newrelic
foo = newrelic.AlertPolicy("foo", name="foo policy")
foo_monitor = newrelic.synthetics.Monitor("foo",
status="ENABLED",
name="foo monitor",
period="EVERY_MINUTE",
uri="https://www.one.newrelic.com",
type="SIMPLE",
locations_publics=["AP_EAST_1"],
custom_headers=[{
"name": "some_name",
"value": "some_value",
}],
treat_redirect_as_failure=True,
validation_string="success",
bypass_head_request=True,
verify_ssl=True,
tags=[{
"key": "some_key",
"values": ["some_value"],
}])
foo_alert_condition = newrelic.synthetics.AlertCondition("foo",
policy_id=foo.id,
name="foo synthetics condition",
monitor_id=foo_monitor.id,
runbook_url="https://www.example.com")
my_condition_entity_tags = newrelic.EntityTags("my_condition_entity_tags",
guid=foo_alert_condition.entity_guid,
tags=[
{
"key": "my-key",
"values": [
"my-value",
"my-other-value",
],
},
{
"key": "my-key-2",
"values": ["my-value-2"],
},
])
package main
import (
"github.com/pulumi/pulumi-newrelic/sdk/v5/go/newrelic"
"github.com/pulumi/pulumi-newrelic/sdk/v5/go/newrelic/synthetics"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
foo, err := newrelic.NewAlertPolicy(ctx, "foo", &newrelic.AlertPolicyArgs{
Name: pulumi.String("foo policy"),
})
if err != nil {
return err
}
fooMonitor, err := synthetics.NewMonitor(ctx, "foo", &synthetics.MonitorArgs{
Status: pulumi.String("ENABLED"),
Name: pulumi.String("foo monitor"),
Period: pulumi.String("EVERY_MINUTE"),
Uri: pulumi.String("https://www.one.newrelic.com"),
Type: pulumi.String("SIMPLE"),
LocationsPublics: pulumi.StringArray{
pulumi.String("AP_EAST_1"),
},
CustomHeaders: synthetics.MonitorCustomHeaderArray{
&synthetics.MonitorCustomHeaderArgs{
Name: pulumi.String("some_name"),
Value: pulumi.String("some_value"),
},
},
TreatRedirectAsFailure: pulumi.Bool(true),
ValidationString: pulumi.String("success"),
BypassHeadRequest: pulumi.Bool(true),
VerifySsl: pulumi.Bool(true),
Tags: synthetics.MonitorTagArray{
&synthetics.MonitorTagArgs{
Key: pulumi.String("some_key"),
Values: pulumi.StringArray{
pulumi.String("some_value"),
},
},
},
})
if err != nil {
return err
}
fooAlertCondition, err := synthetics.NewAlertCondition(ctx, "foo", &synthetics.AlertConditionArgs{
PolicyId: foo.ID(),
Name: pulumi.String("foo synthetics condition"),
MonitorId: fooMonitor.ID(),
RunbookUrl: pulumi.String("https://www.example.com"),
})
if err != nil {
return err
}
_, err = newrelic.NewEntityTags(ctx, "my_condition_entity_tags", &newrelic.EntityTagsArgs{
Guid: fooAlertCondition.EntityGuid,
Tags: newrelic.EntityTagsTagArray{
&newrelic.EntityTagsTagArgs{
Key: pulumi.String("my-key"),
Values: pulumi.StringArray{
pulumi.String("my-value"),
pulumi.String("my-other-value"),
},
},
&newrelic.EntityTagsTagArgs{
Key: pulumi.String("my-key-2"),
Values: pulumi.StringArray{
pulumi.String("my-value-2"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using NewRelic = Pulumi.NewRelic;
return await Deployment.RunAsync(() =>
{
var foo = new NewRelic.AlertPolicy("foo", new()
{
Name = "foo policy",
});
var fooMonitor = new NewRelic.Synthetics.Monitor("foo", new()
{
Status = "ENABLED",
Name = "foo monitor",
Period = "EVERY_MINUTE",
Uri = "https://www.one.newrelic.com",
Type = "SIMPLE",
LocationsPublics = new[]
{
"AP_EAST_1",
},
CustomHeaders = new[]
{
new NewRelic.Synthetics.Inputs.MonitorCustomHeaderArgs
{
Name = "some_name",
Value = "some_value",
},
},
TreatRedirectAsFailure = true,
ValidationString = "success",
BypassHeadRequest = true,
VerifySsl = true,
Tags = new[]
{
new NewRelic.Synthetics.Inputs.MonitorTagArgs
{
Key = "some_key",
Values = new[]
{
"some_value",
},
},
},
});
var fooAlertCondition = new NewRelic.Synthetics.AlertCondition("foo", new()
{
PolicyId = foo.Id,
Name = "foo synthetics condition",
MonitorId = fooMonitor.Id,
RunbookUrl = "https://www.example.com",
});
var myConditionEntityTags = new NewRelic.EntityTags("my_condition_entity_tags", new()
{
Guid = fooAlertCondition.EntityGuid,
Tags = new[]
{
new NewRelic.Inputs.EntityTagsTagArgs
{
Key = "my-key",
Values = new[]
{
"my-value",
"my-other-value",
},
},
new NewRelic.Inputs.EntityTagsTagArgs
{
Key = "my-key-2",
Values = new[]
{
"my-value-2",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.newrelic.AlertPolicy;
import com.pulumi.newrelic.AlertPolicyArgs;
import com.pulumi.newrelic.synthetics.Monitor;
import com.pulumi.newrelic.synthetics.MonitorArgs;
import com.pulumi.newrelic.synthetics.inputs.MonitorCustomHeaderArgs;
import com.pulumi.newrelic.synthetics.inputs.MonitorTagArgs;
import com.pulumi.newrelic.synthetics.AlertCondition;
import com.pulumi.newrelic.synthetics.AlertConditionArgs;
import com.pulumi.newrelic.EntityTags;
import com.pulumi.newrelic.EntityTagsArgs;
import com.pulumi.newrelic.inputs.EntityTagsTagArgs;
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 foo = new AlertPolicy("foo", AlertPolicyArgs.builder()
.name("foo policy")
.build());
var fooMonitor = new Monitor("fooMonitor", MonitorArgs.builder()
.status("ENABLED")
.name("foo monitor")
.period("EVERY_MINUTE")
.uri("https://www.one.newrelic.com")
.type("SIMPLE")
.locationsPublics("AP_EAST_1")
.customHeaders(MonitorCustomHeaderArgs.builder()
.name("some_name")
.value("some_value")
.build())
.treatRedirectAsFailure(true)
.validationString("success")
.bypassHeadRequest(true)
.verifySsl(true)
.tags(MonitorTagArgs.builder()
.key("some_key")
.values("some_value")
.build())
.build());
var fooAlertCondition = new AlertCondition("fooAlertCondition", AlertConditionArgs.builder()
.policyId(foo.id())
.name("foo synthetics condition")
.monitorId(fooMonitor.id())
.runbookUrl("https://www.example.com")
.build());
var myConditionEntityTags = new EntityTags("myConditionEntityTags", EntityTagsArgs.builder()
.guid(fooAlertCondition.entityGuid())
.tags(
EntityTagsTagArgs.builder()
.key("my-key")
.values(
"my-value",
"my-other-value")
.build(),
EntityTagsTagArgs.builder()
.key("my-key-2")
.values("my-value-2")
.build())
.build());
}
}
resources:
foo:
type: newrelic:AlertPolicy
properties:
name: foo policy
fooMonitor:
type: newrelic:synthetics:Monitor
name: foo
properties:
status: ENABLED
name: foo monitor
period: EVERY_MINUTE
uri: https://www.one.newrelic.com
type: SIMPLE
locationsPublics:
- AP_EAST_1
customHeaders:
- name: some_name
value: some_value
treatRedirectAsFailure: true
validationString: success
bypassHeadRequest: true
verifySsl: true
tags:
- key: some_key
values:
- some_value
fooAlertCondition:
type: newrelic:synthetics:AlertCondition
name: foo
properties:
policyId: ${foo.id}
name: foo synthetics condition
monitorId: ${fooMonitor.id}
runbookUrl: https://www.example.com
myConditionEntityTags:
type: newrelic:EntityTags
name: my_condition_entity_tags
properties:
guid: ${fooAlertCondition.entityGuid}
tags:
- key: my-key
values:
- my-value
- my-other-value
- key: my-key-2
values:
- my-value-2
Create AlertCondition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AlertCondition(name: string, args: AlertConditionArgs, opts?: CustomResourceOptions);
@overload
def AlertCondition(resource_name: str,
args: AlertConditionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AlertCondition(resource_name: str,
opts: Optional[ResourceOptions] = None,
monitor_id: Optional[str] = None,
policy_id: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
runbook_url: Optional[str] = None)
func NewAlertCondition(ctx *Context, name string, args AlertConditionArgs, opts ...ResourceOption) (*AlertCondition, error)
public AlertCondition(string name, AlertConditionArgs args, CustomResourceOptions? opts = null)
public AlertCondition(String name, AlertConditionArgs args)
public AlertCondition(String name, AlertConditionArgs args, CustomResourceOptions options)
type: newrelic:synthetics:AlertCondition
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 AlertConditionArgs
- 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 AlertConditionArgs
- 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 AlertConditionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertConditionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlertConditionArgs
- 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 newrelicAlertConditionResource = new NewRelic.Synthetics.AlertCondition("newrelicAlertConditionResource", new()
{
MonitorId = "string",
PolicyId = "string",
Enabled = false,
Name = "string",
RunbookUrl = "string",
});
example, err := synthetics.NewAlertCondition(ctx, "newrelicAlertConditionResource", &synthetics.AlertConditionArgs{
MonitorId: pulumi.String("string"),
PolicyId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
RunbookUrl: pulumi.String("string"),
})
var newrelicAlertConditionResource = new AlertCondition("newrelicAlertConditionResource", AlertConditionArgs.builder()
.monitorId("string")
.policyId("string")
.enabled(false)
.name("string")
.runbookUrl("string")
.build());
newrelic_alert_condition_resource = newrelic.synthetics.AlertCondition("newrelicAlertConditionResource",
monitor_id="string",
policy_id="string",
enabled=False,
name="string",
runbook_url="string")
const newrelicAlertConditionResource = new newrelic.synthetics.AlertCondition("newrelicAlertConditionResource", {
monitorId: "string",
policyId: "string",
enabled: false,
name: "string",
runbookUrl: "string",
});
type: newrelic:synthetics:AlertCondition
properties:
enabled: false
monitorId: string
name: string
policyId: string
runbookUrl: string
AlertCondition 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 AlertCondition resource accepts the following input properties:
- Monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- Policy
Id string - The ID of the policy where this condition should be used.
- Enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- Name string
- The title of this condition.
- Runbook
Url string - Runbook URL to display in notifications.
- Monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- Policy
Id string - The ID of the policy where this condition should be used.
- Enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- Name string
- The title of this condition.
- Runbook
Url string - Runbook URL to display in notifications.
- monitor
Id String - The GUID of the Synthetics monitor to be referenced in the alert condition.
- policy
Id String - The ID of the policy where this condition should be used.
- enabled Boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- name String
- The title of this condition.
- runbook
Url String - Runbook URL to display in notifications.
- monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- policy
Id string - The ID of the policy where this condition should be used.
- enabled boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- name string
- The title of this condition.
- runbook
Url string - Runbook URL to display in notifications.
- monitor_
id str - The GUID of the Synthetics monitor to be referenced in the alert condition.
- policy_
id str - The ID of the policy where this condition should be used.
- enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- name str
- The title of this condition.
- runbook_
url str - Runbook URL to display in notifications.
- monitor
Id String - The GUID of the Synthetics monitor to be referenced in the alert condition.
- policy
Id String - The ID of the policy where this condition should be used.
- enabled Boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- name String
- The title of this condition.
- runbook
Url String - Runbook URL to display in notifications.
Outputs
All input properties are implicitly available as output properties. Additionally, the AlertCondition resource produces the following output properties:
- Entity
Guid string - The unique entity identifier of the condition in New Relic.
- Id string
- The provider-assigned unique ID for this managed resource.
- Entity
Guid string - The unique entity identifier of the condition in New Relic.
- Id string
- The provider-assigned unique ID for this managed resource.
- entity
Guid String - The unique entity identifier of the condition in New Relic.
- id String
- The provider-assigned unique ID for this managed resource.
- entity
Guid string - The unique entity identifier of the condition in New Relic.
- id string
- The provider-assigned unique ID for this managed resource.
- entity_
guid str - The unique entity identifier of the condition in New Relic.
- id str
- The provider-assigned unique ID for this managed resource.
- entity
Guid String - The unique entity identifier of the condition in New Relic.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AlertCondition Resource
Get an existing AlertCondition 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?: AlertConditionState, opts?: CustomResourceOptions): AlertCondition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
entity_guid: Optional[str] = None,
monitor_id: Optional[str] = None,
name: Optional[str] = None,
policy_id: Optional[str] = None,
runbook_url: Optional[str] = None) -> AlertCondition
func GetAlertCondition(ctx *Context, name string, id IDInput, state *AlertConditionState, opts ...ResourceOption) (*AlertCondition, error)
public static AlertCondition Get(string name, Input<string> id, AlertConditionState? state, CustomResourceOptions? opts = null)
public static AlertCondition get(String name, Output<String> id, AlertConditionState 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.
- Enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- Entity
Guid string - The unique entity identifier of the condition in New Relic.
- Monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- Name string
- The title of this condition.
- Policy
Id string - The ID of the policy where this condition should be used.
- Runbook
Url string - Runbook URL to display in notifications.
- Enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- Entity
Guid string - The unique entity identifier of the condition in New Relic.
- Monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- Name string
- The title of this condition.
- Policy
Id string - The ID of the policy where this condition should be used.
- Runbook
Url string - Runbook URL to display in notifications.
- enabled Boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- entity
Guid String - The unique entity identifier of the condition in New Relic.
- monitor
Id String - The GUID of the Synthetics monitor to be referenced in the alert condition.
- name String
- The title of this condition.
- policy
Id String - The ID of the policy where this condition should be used.
- runbook
Url String - Runbook URL to display in notifications.
- enabled boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- entity
Guid string - The unique entity identifier of the condition in New Relic.
- monitor
Id string - The GUID of the Synthetics monitor to be referenced in the alert condition.
- name string
- The title of this condition.
- policy
Id string - The ID of the policy where this condition should be used.
- runbook
Url string - Runbook URL to display in notifications.
- enabled bool
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- entity_
guid str - The unique entity identifier of the condition in New Relic.
- monitor_
id str - The GUID of the Synthetics monitor to be referenced in the alert condition.
- name str
- The title of this condition.
- policy_
id str - The ID of the policy where this condition should be used.
- runbook_
url str - Runbook URL to display in notifications.
- enabled Boolean
- Set whether to enable the alert condition. Defaults to
true
.Warning: This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
- entity
Guid String - The unique entity identifier of the condition in New Relic.
- monitor
Id String - The GUID of the Synthetics monitor to be referenced in the alert condition.
- name String
- The title of this condition.
- policy
Id String - The ID of the policy where this condition should be used.
- runbook
Url String - Runbook URL to display in notifications.
Import
Synthetics alert conditions can be imported using a composite ID of <policy_id>:<condition_id>
, e.g.
$ pulumi import newrelic:synthetics/alertCondition:AlertCondition main 12345:67890
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- New Relic pulumi/pulumi-newrelic
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
newrelic
Terraform Provider.