published on Friday, Jun 5, 2026 by Chronosphere
published on Friday, Jun 5, 2026 by Chronosphere
Workspace-scoped VictorOps (Splunk On-Call) credentials that downstream notifiers and LogScale actions can reference. Centralizes the REST integration API key so it isn’t duplicated across notifiers; modern equivalent of the per-notifier credentials.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Pulumi = Chronosphere.Pulumi;
return await Deployment.RunAsync(() =>
{
var victorops = new Pulumi.VictoropsExternalConnection("victorops", new()
{
ApiKey = "00000000-0000-0000-0000-000000000000",
ApiUrl = "https://alert.victorops.com/integrations/generic/00000000/alert/",
Name = "VictorOps",
});
});
package main
import (
"github.com/chronosphereio/pulumi-chronosphere/sdk/go/chronosphere"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := chronosphere.NewVictoropsExternalConnection(ctx, "victorops", &chronosphere.VictoropsExternalConnectionArgs{
ApiKey: pulumi.String("00000000-0000-0000-0000-000000000000"),
ApiUrl: pulumi.String("https://alert.victorops.com/integrations/generic/00000000/alert/"),
Name: pulumi.String("VictorOps"),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.chronosphere.VictoropsExternalConnection;
import com.pulumi.chronosphere.VictoropsExternalConnectionArgs;
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 victorops = new VictoropsExternalConnection("victorops", VictoropsExternalConnectionArgs.builder()
.apiKey("00000000-0000-0000-0000-000000000000")
.apiUrl("https://alert.victorops.com/integrations/generic/00000000/alert/")
.name("VictorOps")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as chronosphere from "@pulumi-chronosphere/pulumi-chronosphere";
const victorops = new chronosphere.VictoropsExternalConnection("victorops", {
apiKey: "00000000-0000-0000-0000-000000000000",
apiUrl: "https://alert.victorops.com/integrations/generic/00000000/alert/",
name: "VictorOps",
});
import pulumi
import pulumi_chronosphere as chronosphere
victorops = chronosphere.VictoropsExternalConnection("victorops",
api_key="00000000-0000-0000-0000-000000000000",
api_url="https://alert.victorops.com/integrations/generic/00000000/alert/",
name="VictorOps")
resources:
victorops:
type: chronosphere:VictoropsExternalConnection
properties:
apiKey: 00000000-0000-0000-0000-000000000000
apiUrl: https://alert.victorops.com/integrations/generic/00000000/alert/
name: VictorOps
Create VictoropsExternalConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VictoropsExternalConnection(name: string, args: VictoropsExternalConnectionArgs, opts?: CustomResourceOptions);@overload
def VictoropsExternalConnection(resource_name: str,
args: VictoropsExternalConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VictoropsExternalConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
api_key: Optional[str] = None,
api_url: Optional[str] = None,
slug: Optional[str] = None)func NewVictoropsExternalConnection(ctx *Context, name string, args VictoropsExternalConnectionArgs, opts ...ResourceOption) (*VictoropsExternalConnection, error)public VictoropsExternalConnection(string name, VictoropsExternalConnectionArgs args, CustomResourceOptions? opts = null)
public VictoropsExternalConnection(String name, VictoropsExternalConnectionArgs args)
public VictoropsExternalConnection(String name, VictoropsExternalConnectionArgs args, CustomResourceOptions options)
type: chronosphere:VictoropsExternalConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "chronosphere_victoropsexternalconnection" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args VictoropsExternalConnectionArgs
- 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 VictoropsExternalConnectionArgs
- 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 VictoropsExternalConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VictoropsExternalConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VictoropsExternalConnectionArgs
- 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 victoropsExternalConnectionResource = new Pulumi.VictoropsExternalConnection("victoropsExternalConnectionResource", new()
{
Name = "string",
ApiKey = "string",
ApiUrl = "string",
Slug = "string",
});
example, err := chronosphere.NewVictoropsExternalConnection(ctx, "victoropsExternalConnectionResource", &chronosphere.VictoropsExternalConnectionArgs{
Name: pulumi.String("string"),
ApiKey: pulumi.String("string"),
ApiUrl: pulumi.String("string"),
Slug: pulumi.String("string"),
})
resource "chronosphere_victoropsexternalconnection" "victoropsExternalConnectionResource" {
name = "string"
api_key = "string"
api_url = "string"
slug = "string"
}
var victoropsExternalConnectionResource = new VictoropsExternalConnection("victoropsExternalConnectionResource", VictoropsExternalConnectionArgs.builder()
.name("string")
.apiKey("string")
.apiUrl("string")
.slug("string")
.build());
victorops_external_connection_resource = chronosphere.VictoropsExternalConnection("victoropsExternalConnectionResource",
name="string",
api_key="string",
api_url="string",
slug="string")
const victoropsExternalConnectionResource = new chronosphere.VictoropsExternalConnection("victoropsExternalConnectionResource", {
name: "string",
apiKey: "string",
apiUrl: "string",
slug: "string",
});
type: chronosphere:VictoropsExternalConnection
properties:
apiKey: string
apiUrl: string
name: string
slug: string
VictoropsExternalConnection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VictoropsExternalConnection resource accepts the following input properties:
- Name string
- Display name of the external connection.
- Api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- Api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- Slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- Name string
- Display name of the external connection.
- Api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- Api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- Slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- name string
- Display name of the external connection.
- api_
key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api_
url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- name String
- Display name of the external connection.
- api
Key String - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url String - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- slug String
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- name string
- Display name of the external connection.
- api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- name str
- Display name of the external connection.
- api_
key str - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api_
url str - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- slug str
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- name String
- Display name of the external connection.
- api
Key String - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url String - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- slug String
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
Outputs
All input properties are implicitly available as output properties. Additionally, the VictoropsExternalConnection 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 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 VictoropsExternalConnection Resource
Get an existing VictoropsExternalConnection 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?: VictoropsExternalConnectionState, opts?: CustomResourceOptions): VictoropsExternalConnection@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_key: Optional[str] = None,
api_url: Optional[str] = None,
name: Optional[str] = None,
slug: Optional[str] = None) -> VictoropsExternalConnectionfunc GetVictoropsExternalConnection(ctx *Context, name string, id IDInput, state *VictoropsExternalConnectionState, opts ...ResourceOption) (*VictoropsExternalConnection, error)public static VictoropsExternalConnection Get(string name, Input<string> id, VictoropsExternalConnectionState? state, CustomResourceOptions? opts = null)public static VictoropsExternalConnection get(String name, Output<String> id, VictoropsExternalConnectionState state, CustomResourceOptions options)resources: _: type: chronosphere:VictoropsExternalConnection get: id: ${id}import {
to = chronosphere_victoropsexternalconnection.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- Api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- Name string
- Display name of the external connection.
- Slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- Api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- Api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- Name string
- Display name of the external connection.
- Slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- api_
key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api_
url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- name string
- Display name of the external connection.
- slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- api
Key String - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url String - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- name String
- Display name of the external connection.
- slug String
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- api
Key string - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url string - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- name string
- Display name of the external connection.
- slug string
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- api_
key str - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api_
url str - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- name str
- Display name of the external connection.
- slug str
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
- api
Key String - VictorOps (Splunk On-Call) REST integration API key used to authenticate alert delivery. Treat as a secret.
- api
Url String - VictorOps REST endpoint URL that receives alert payloads. Override to target a custom endpoint.
- name String
- Display name of the external connection.
- slug String
- Stable identifier for the connection. Generated from
nameif omitted. Immutable after creation.
Package Details
- Repository
- chronosphere chronosphereio/pulumi-chronosphere
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
chronosphereTerraform Provider.
published on Friday, Jun 5, 2026 by Chronosphere