mongodbatlas logo
MongoDB Atlas v3.7.2, Mar 31 23

mongodbatlas.ThirdPartyIntegration

Explore with Pulumi AI

Import

Third-Party Integration Settings can be imported using project ID and the integration type, in the format project_id-type, e.g.

 $ pulumi import mongodbatlas:index/thirdPartyIntegration:ThirdPartyIntegration my_user 1112222b3bf99403840e8934-OPS_GENIE

See MongoDB Atlas API Documentation for more information.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;

return await Deployment.RunAsync(() => 
{
    var testFlowdock = new Mongodbatlas.ThirdPartyIntegration("testFlowdock", new()
    {
        ApiToken = "<API-TOKEN>",
        FlowName = "<FLOW-NAME>",
        OrgName = "<ORG-NAME>",
        ProjectId = "<PROJECT-ID>",
        Type = "FLOWDOCK",
    });

});
package main

import (
	"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mongodbatlas.NewThirdPartyIntegration(ctx, "testFlowdock", &mongodbatlas.ThirdPartyIntegrationArgs{
			ApiToken:  pulumi.String("<API-TOKEN>"),
			FlowName:  pulumi.String("<FLOW-NAME>"),
			OrgName:   pulumi.String("<ORG-NAME>"),
			ProjectId: pulumi.String("<PROJECT-ID>"),
			Type:      pulumi.String("FLOWDOCK"),
		})
		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.mongodbatlas.ThirdPartyIntegration;
import com.pulumi.mongodbatlas.ThirdPartyIntegrationArgs;
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 testFlowdock = new ThirdPartyIntegration("testFlowdock", ThirdPartyIntegrationArgs.builder()        
            .apiToken("<API-TOKEN>")
            .flowName("<FLOW-NAME>")
            .orgName("<ORG-NAME>")
            .projectId("<PROJECT-ID>")
            .type("FLOWDOCK")
            .build());

    }
}
import pulumi
import pulumi_mongodbatlas as mongodbatlas

test_flowdock = mongodbatlas.ThirdPartyIntegration("testFlowdock",
    api_token="<API-TOKEN>",
    flow_name="<FLOW-NAME>",
    org_name="<ORG-NAME>",
    project_id="<PROJECT-ID>",
    type="FLOWDOCK")
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";

const testFlowdock = new mongodbatlas.ThirdPartyIntegration("testFlowdock", {
    apiToken: "<API-TOKEN>",
    flowName: "<FLOW-NAME>",
    orgName: "<ORG-NAME>",
    projectId: "<PROJECT-ID>",
    type: "FLOWDOCK",
});
resources:
  testFlowdock:
    type: mongodbatlas:ThirdPartyIntegration
    properties:
      apiToken: <API-TOKEN>
      flowName: <FLOW-NAME>
      orgName: <ORG-NAME>
      projectId: <PROJECT-ID>
      type: FLOWDOCK

Create ThirdPartyIntegration Resource

new ThirdPartyIntegration(name: string, args: ThirdPartyIntegrationArgs, opts?: CustomResourceOptions);
@overload
def ThirdPartyIntegration(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_id: Optional[str] = None,
                          api_key: Optional[str] = None,
                          api_token: Optional[str] = None,
                          channel_name: Optional[str] = None,
                          enabled: Optional[bool] = None,
                          flow_name: Optional[str] = None,
                          license_key: Optional[str] = None,
                          microsoft_teams_webhook_url: Optional[str] = None,
                          org_name: Optional[str] = None,
                          password: Optional[str] = None,
                          project_id: Optional[str] = None,
                          read_token: Optional[str] = None,
                          region: Optional[str] = None,
                          routing_key: Optional[str] = None,
                          scheme: Optional[str] = None,
                          secret: Optional[str] = None,
                          service_discovery: Optional[str] = None,
                          service_key: Optional[str] = None,
                          team_name: Optional[str] = None,
                          type: Optional[str] = None,
                          url: Optional[str] = None,
                          user_name: Optional[str] = None,
                          write_token: Optional[str] = None)
@overload
def ThirdPartyIntegration(resource_name: str,
                          args: ThirdPartyIntegrationArgs,
                          opts: Optional[ResourceOptions] = None)
func NewThirdPartyIntegration(ctx *Context, name string, args ThirdPartyIntegrationArgs, opts ...ResourceOption) (*ThirdPartyIntegration, error)
public ThirdPartyIntegration(string name, ThirdPartyIntegrationArgs args, CustomResourceOptions? opts = null)
public ThirdPartyIntegration(String name, ThirdPartyIntegrationArgs args)
public ThirdPartyIntegration(String name, ThirdPartyIntegrationArgs args, CustomResourceOptions options)
type: mongodbatlas:ThirdPartyIntegration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ThirdPartyIntegrationArgs
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 ThirdPartyIntegrationArgs
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 ThirdPartyIntegrationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ThirdPartyIntegrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ThirdPartyIntegrationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ThirdPartyIntegration 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 ThirdPartyIntegration resource accepts the following input properties:

ProjectId string

The unique ID for the project to get all Third-Party service integrations

Type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
AccountId string

Unique identifier of your New Relic account.

ApiKey string

Your API Key.

ApiToken string

Your API Token.

ChannelName string
Enabled bool

Whether your cluster has Prometheus enabled.

FlowName string

Your Flowdock Flow name.

LicenseKey string

Your License Key.

MicrosoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

OrgName string

Your Flowdock organization name.

Password string

Your Prometheus password.

ReadToken string

Your Insights Query Key.

Region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

RoutingKey string

An optional field for your Routing Key.

Scheme string

Your Prometheus protocol scheme configured for requests.

Secret string

An optional field for your webhook secret.

ServiceDiscovery string

Indicates which service discovery method is used, either file or http.

ServiceKey string

Your Service Key.

TeamName string
Url string

Your webhook URL.

UserName string

Your Prometheus username.

WriteToken string

Your Insights Insert Key.

ProjectId string

The unique ID for the project to get all Third-Party service integrations

Type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
AccountId string

Unique identifier of your New Relic account.

ApiKey string

Your API Key.

ApiToken string

Your API Token.

ChannelName string
Enabled bool

Whether your cluster has Prometheus enabled.

FlowName string

Your Flowdock Flow name.

LicenseKey string

Your License Key.

MicrosoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

OrgName string

Your Flowdock organization name.

Password string

Your Prometheus password.

ReadToken string

Your Insights Query Key.

Region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

RoutingKey string

An optional field for your Routing Key.

Scheme string

Your Prometheus protocol scheme configured for requests.

Secret string

An optional field for your webhook secret.

ServiceDiscovery string

Indicates which service discovery method is used, either file or http.

ServiceKey string

Your Service Key.

TeamName string
Url string

Your webhook URL.

UserName string

Your Prometheus username.

WriteToken string

Your Insights Insert Key.

projectId String

The unique ID for the project to get all Third-Party service integrations

type String

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
accountId String

Unique identifier of your New Relic account.

apiKey String

Your API Key.

apiToken String

Your API Token.

channelName String
enabled Boolean

Whether your cluster has Prometheus enabled.

flowName String

Your Flowdock Flow name.

licenseKey String

Your License Key.

microsoftTeamsWebhookUrl String

Your Microsoft Teams incoming webhook URL.

orgName String

Your Flowdock organization name.

password String

Your Prometheus password.

readToken String

Your Insights Query Key.

region String

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey String

An optional field for your Routing Key.

scheme String

Your Prometheus protocol scheme configured for requests.

secret String

An optional field for your webhook secret.

serviceDiscovery String

Indicates which service discovery method is used, either file or http.

serviceKey String

Your Service Key.

teamName String
url String

Your webhook URL.

userName String

Your Prometheus username.

writeToken String

Your Insights Insert Key.

projectId string

The unique ID for the project to get all Third-Party service integrations

type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
accountId string

Unique identifier of your New Relic account.

apiKey string

Your API Key.

apiToken string

Your API Token.

channelName string
enabled boolean

Whether your cluster has Prometheus enabled.

flowName string

Your Flowdock Flow name.

licenseKey string

Your License Key.

microsoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

orgName string

Your Flowdock organization name.

password string

Your Prometheus password.

readToken string

Your Insights Query Key.

region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey string

An optional field for your Routing Key.

scheme string

Your Prometheus protocol scheme configured for requests.

secret string

An optional field for your webhook secret.

serviceDiscovery string

Indicates which service discovery method is used, either file or http.

serviceKey string

Your Service Key.

teamName string
url string

Your webhook URL.

userName string

Your Prometheus username.

writeToken string

Your Insights Insert Key.

project_id str

The unique ID for the project to get all Third-Party service integrations

type str

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
account_id str

Unique identifier of your New Relic account.

api_key str

Your API Key.

api_token str

Your API Token.

channel_name str
enabled bool

Whether your cluster has Prometheus enabled.

flow_name str

Your Flowdock Flow name.

license_key str

Your License Key.

microsoft_teams_webhook_url str

Your Microsoft Teams incoming webhook URL.

org_name str

Your Flowdock organization name.

password str

Your Prometheus password.

read_token str

Your Insights Query Key.

region str

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routing_key str

An optional field for your Routing Key.

scheme str

Your Prometheus protocol scheme configured for requests.

secret str

An optional field for your webhook secret.

service_discovery str

Indicates which service discovery method is used, either file or http.

service_key str

Your Service Key.

team_name str
url str

Your webhook URL.

user_name str

Your Prometheus username.

write_token str

Your Insights Insert Key.

projectId String

The unique ID for the project to get all Third-Party service integrations

type String

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
accountId String

Unique identifier of your New Relic account.

apiKey String

Your API Key.

apiToken String

Your API Token.

channelName String
enabled Boolean

Whether your cluster has Prometheus enabled.

flowName String

Your Flowdock Flow name.

licenseKey String

Your License Key.

microsoftTeamsWebhookUrl String

Your Microsoft Teams incoming webhook URL.

orgName String

Your Flowdock organization name.

password String

Your Prometheus password.

readToken String

Your Insights Query Key.

region String

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey String

An optional field for your Routing Key.

scheme String

Your Prometheus protocol scheme configured for requests.

secret String

An optional field for your webhook secret.

serviceDiscovery String

Indicates which service discovery method is used, either file or http.

serviceKey String

Your Service Key.

teamName String
url String

Your webhook URL.

userName String

Your Prometheus username.

writeToken String

Your Insights Insert Key.

Outputs

All input properties are implicitly available as output properties. Additionally, the ThirdPartyIntegration 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 ThirdPartyIntegration Resource

Get an existing ThirdPartyIntegration 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?: ThirdPartyIntegrationState, opts?: CustomResourceOptions): ThirdPartyIntegration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        api_key: Optional[str] = None,
        api_token: Optional[str] = None,
        channel_name: Optional[str] = None,
        enabled: Optional[bool] = None,
        flow_name: Optional[str] = None,
        license_key: Optional[str] = None,
        microsoft_teams_webhook_url: Optional[str] = None,
        org_name: Optional[str] = None,
        password: Optional[str] = None,
        project_id: Optional[str] = None,
        read_token: Optional[str] = None,
        region: Optional[str] = None,
        routing_key: Optional[str] = None,
        scheme: Optional[str] = None,
        secret: Optional[str] = None,
        service_discovery: Optional[str] = None,
        service_key: Optional[str] = None,
        team_name: Optional[str] = None,
        type: Optional[str] = None,
        url: Optional[str] = None,
        user_name: Optional[str] = None,
        write_token: Optional[str] = None) -> ThirdPartyIntegration
func GetThirdPartyIntegration(ctx *Context, name string, id IDInput, state *ThirdPartyIntegrationState, opts ...ResourceOption) (*ThirdPartyIntegration, error)
public static ThirdPartyIntegration Get(string name, Input<string> id, ThirdPartyIntegrationState? state, CustomResourceOptions? opts = null)
public static ThirdPartyIntegration get(String name, Output<String> id, ThirdPartyIntegrationState 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.
The following state arguments are supported:
AccountId string

Unique identifier of your New Relic account.

ApiKey string

Your API Key.

ApiToken string

Your API Token.

ChannelName string
Enabled bool

Whether your cluster has Prometheus enabled.

FlowName string

Your Flowdock Flow name.

LicenseKey string

Your License Key.

MicrosoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

OrgName string

Your Flowdock organization name.

Password string

Your Prometheus password.

ProjectId string

The unique ID for the project to get all Third-Party service integrations

ReadToken string

Your Insights Query Key.

Region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

RoutingKey string

An optional field for your Routing Key.

Scheme string

Your Prometheus protocol scheme configured for requests.

Secret string

An optional field for your webhook secret.

ServiceDiscovery string

Indicates which service discovery method is used, either file or http.

ServiceKey string

Your Service Key.

TeamName string
Type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
Url string

Your webhook URL.

UserName string

Your Prometheus username.

WriteToken string

Your Insights Insert Key.

AccountId string

Unique identifier of your New Relic account.

ApiKey string

Your API Key.

ApiToken string

Your API Token.

ChannelName string
Enabled bool

Whether your cluster has Prometheus enabled.

FlowName string

Your Flowdock Flow name.

LicenseKey string

Your License Key.

MicrosoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

OrgName string

Your Flowdock organization name.

Password string

Your Prometheus password.

ProjectId string

The unique ID for the project to get all Third-Party service integrations

ReadToken string

Your Insights Query Key.

Region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

RoutingKey string

An optional field for your Routing Key.

Scheme string

Your Prometheus protocol scheme configured for requests.

Secret string

An optional field for your webhook secret.

ServiceDiscovery string

Indicates which service discovery method is used, either file or http.

ServiceKey string

Your Service Key.

TeamName string
Type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
Url string

Your webhook URL.

UserName string

Your Prometheus username.

WriteToken string

Your Insights Insert Key.

accountId String

Unique identifier of your New Relic account.

apiKey String

Your API Key.

apiToken String

Your API Token.

channelName String
enabled Boolean

Whether your cluster has Prometheus enabled.

flowName String

Your Flowdock Flow name.

licenseKey String

Your License Key.

microsoftTeamsWebhookUrl String

Your Microsoft Teams incoming webhook URL.

orgName String

Your Flowdock organization name.

password String

Your Prometheus password.

projectId String

The unique ID for the project to get all Third-Party service integrations

readToken String

Your Insights Query Key.

region String

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey String

An optional field for your Routing Key.

scheme String

Your Prometheus protocol scheme configured for requests.

secret String

An optional field for your webhook secret.

serviceDiscovery String

Indicates which service discovery method is used, either file or http.

serviceKey String

Your Service Key.

teamName String
type String

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
url String

Your webhook URL.

userName String

Your Prometheus username.

writeToken String

Your Insights Insert Key.

accountId string

Unique identifier of your New Relic account.

apiKey string

Your API Key.

apiToken string

Your API Token.

channelName string
enabled boolean

Whether your cluster has Prometheus enabled.

flowName string

Your Flowdock Flow name.

licenseKey string

Your License Key.

microsoftTeamsWebhookUrl string

Your Microsoft Teams incoming webhook URL.

orgName string

Your Flowdock organization name.

password string

Your Prometheus password.

projectId string

The unique ID for the project to get all Third-Party service integrations

readToken string

Your Insights Query Key.

region string

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey string

An optional field for your Routing Key.

scheme string

Your Prometheus protocol scheme configured for requests.

secret string

An optional field for your webhook secret.

serviceDiscovery string

Indicates which service discovery method is used, either file or http.

serviceKey string

Your Service Key.

teamName string
type string

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
url string

Your webhook URL.

userName string

Your Prometheus username.

writeToken string

Your Insights Insert Key.

account_id str

Unique identifier of your New Relic account.

api_key str

Your API Key.

api_token str

Your API Token.

channel_name str
enabled bool

Whether your cluster has Prometheus enabled.

flow_name str

Your Flowdock Flow name.

license_key str

Your License Key.

microsoft_teams_webhook_url str

Your Microsoft Teams incoming webhook URL.

org_name str

Your Flowdock organization name.

password str

Your Prometheus password.

project_id str

The unique ID for the project to get all Third-Party service integrations

read_token str

Your Insights Query Key.

region str

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routing_key str

An optional field for your Routing Key.

scheme str

Your Prometheus protocol scheme configured for requests.

secret str

An optional field for your webhook secret.

service_discovery str

Indicates which service discovery method is used, either file or http.

service_key str

Your Service Key.

team_name str
type str

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
url str

Your webhook URL.

user_name str

Your Prometheus username.

write_token str

Your Insights Insert Key.

accountId String

Unique identifier of your New Relic account.

apiKey String

Your API Key.

apiToken String

Your API Token.

channelName String
enabled Boolean

Whether your cluster has Prometheus enabled.

flowName String

Your Flowdock Flow name.

licenseKey String

Your License Key.

microsoftTeamsWebhookUrl String

Your Microsoft Teams incoming webhook URL.

orgName String

Your Flowdock organization name.

password String

Your Prometheus password.

projectId String

The unique ID for the project to get all Third-Party service integrations

readToken String

Your Insights Query Key.

region String

Indicates which API URL to use, either US or EU. Opsgenie will use US by default.

routingKey String

An optional field for your Routing Key.

scheme String

Your Prometheus protocol scheme configured for requests.

secret String

An optional field for your webhook secret.

serviceDiscovery String

Indicates which service discovery method is used, either file or http.

serviceKey String

Your Service Key.

teamName String
type String

Third-Party Integration Settings type

  • PAGER_DUTY
  • DATADOG
  • NEW_RELIC*
  • OPS_GENIE
  • VICTOR_OPS
  • FLOWDOCK*
  • WEBHOOK
  • MICROSOFT_TEAMS
  • PROMETHEUS
url String

Your webhook URL.

userName String

Your Prometheus username.

writeToken String

Your Insights Insert Key.

Package Details

Repository
MongoDB Atlas pulumi/pulumi-mongodbatlas
License
Apache-2.0
Notes

This Pulumi package is based on the mongodbatlas Terraform Provider.