1. Packages
  2. Datadog Provider
  3. API Docs
  4. cloudflare
  5. IntegrationAccount
Datadog v4.49.1 published on Saturday, Apr 26, 2025 by Pulumi

datadog.cloudflare.IntegrationAccount

Explore with Pulumi AI

Provides a Datadog IntegrationCloudflareAccount resource. This can be used to create and manage Datadog integration_cloudflare_account.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";

// Create new integration_cloudflare_account resource
const foo = new datadog.cloudflare.IntegrationAccount("foo", {
    apiKey: "12345678910abc",
    email: "test-email@example.com",
    name: "test-name",
});
Copy
import pulumi
import pulumi_datadog as datadog

# Create new integration_cloudflare_account resource
foo = datadog.cloudflare.IntegrationAccount("foo",
    api_key="12345678910abc",
    email="test-email@example.com",
    name="test-name")
Copy
package main

import (
	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog/cloudflare"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// Create new integration_cloudflare_account resource
		_, err := cloudflare.NewIntegrationAccount(ctx, "foo", &cloudflare.IntegrationAccountArgs{
			ApiKey: pulumi.String("12345678910abc"),
			Email:  pulumi.String("test-email@example.com"),
			Name:   pulumi.String("test-name"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datadog = Pulumi.Datadog;

return await Deployment.RunAsync(() => 
{
    // Create new integration_cloudflare_account resource
    var foo = new Datadog.Cloudflare.IntegrationAccount("foo", new()
    {
        ApiKey = "12345678910abc",
        Email = "test-email@example.com",
        Name = "test-name",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.cloudflare.IntegrationAccount;
import com.pulumi.datadog.cloudflare.IntegrationAccountArgs;
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) {
        // Create new integration_cloudflare_account resource
        var foo = new IntegrationAccount("foo", IntegrationAccountArgs.builder()
            .apiKey("12345678910abc")
            .email("test-email@example.com")
            .name("test-name")
            .build());

    }
}
Copy
resources:
  # Create new integration_cloudflare_account resource
  foo:
    type: datadog:cloudflare:IntegrationAccount
    properties:
      apiKey: 12345678910abc
      email: test-email@example.com
      name: test-name
Copy

Create IntegrationAccount Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IntegrationAccount(name: string, args: IntegrationAccountArgs, opts?: CustomResourceOptions);
@overload
def IntegrationAccount(resource_name: str,
                       args: IntegrationAccountArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def IntegrationAccount(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       api_key: Optional[str] = None,
                       name: Optional[str] = None,
                       email: Optional[str] = None,
                       resources: Optional[Sequence[str]] = None)
func NewIntegrationAccount(ctx *Context, name string, args IntegrationAccountArgs, opts ...ResourceOption) (*IntegrationAccount, error)
public IntegrationAccount(string name, IntegrationAccountArgs args, CustomResourceOptions? opts = null)
public IntegrationAccount(String name, IntegrationAccountArgs args)
public IntegrationAccount(String name, IntegrationAccountArgs args, CustomResourceOptions options)
type: datadog:cloudflare:IntegrationAccount
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IntegrationAccountArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IntegrationAccountArgs
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 datadogIntegrationAccountResource = new Datadog.Cloudflare.IntegrationAccount("datadogIntegrationAccountResource", new()
{
    ApiKey = "string",
    Name = "string",
    Email = "string",
    Resources = new[]
    {
        "string",
    },
});
Copy
example, err := cloudflare.NewIntegrationAccount(ctx, "datadogIntegrationAccountResource", &cloudflare.IntegrationAccountArgs{
	ApiKey: pulumi.String("string"),
	Name:   pulumi.String("string"),
	Email:  pulumi.String("string"),
	Resources: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var datadogIntegrationAccountResource = new com.pulumi.datadog.cloudflare.IntegrationAccount("datadogIntegrationAccountResource", com.pulumi.datadog.cloudflare.IntegrationAccountArgs.builder()
    .apiKey("string")
    .name("string")
    .email("string")
    .resources("string")
    .build());
Copy
datadog_integration_account_resource = datadog.cloudflare.IntegrationAccount("datadogIntegrationAccountResource",
    api_key="string",
    name="string",
    email="string",
    resources=["string"])
Copy
const datadogIntegrationAccountResource = new datadog.cloudflare.IntegrationAccount("datadogIntegrationAccountResource", {
    apiKey: "string",
    name: "string",
    email: "string",
    resources: ["string"],
});
Copy
type: datadog:cloudflare:IntegrationAccount
properties:
    apiKey: string
    email: string
    name: string
    resources:
        - string
Copy

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

ApiKey This property is required. string
The API key (or token) for the Cloudflare account.
Name This property is required. string
The name of the Cloudflare account.
Email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
Resources List<string>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
ApiKey This property is required. string
The API key (or token) for the Cloudflare account.
Name This property is required. string
The name of the Cloudflare account.
Email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
Resources []string
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey This property is required. String
The API key (or token) for the Cloudflare account.
name This property is required. String
The name of the Cloudflare account.
email String
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
resources List<String>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey This property is required. string
The API key (or token) for the Cloudflare account.
name This property is required. string
The name of the Cloudflare account.
email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
resources string[]
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
api_key This property is required. str
The API key (or token) for the Cloudflare account.
name This property is required. str
The name of the Cloudflare account.
email str
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
resources Sequence[str]
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey This property is required. String
The API key (or token) for the Cloudflare account.
name This property is required. String
The name of the Cloudflare account.
email String
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
resources List<String>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).

Outputs

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

Get an existing IntegrationAccount 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?: IntegrationAccountState, opts?: CustomResourceOptions): IntegrationAccount
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_key: Optional[str] = None,
        email: Optional[str] = None,
        name: Optional[str] = None,
        resources: Optional[Sequence[str]] = None) -> IntegrationAccount
func GetIntegrationAccount(ctx *Context, name string, id IDInput, state *IntegrationAccountState, opts ...ResourceOption) (*IntegrationAccount, error)
public static IntegrationAccount Get(string name, Input<string> id, IntegrationAccountState? state, CustomResourceOptions? opts = null)
public static IntegrationAccount get(String name, Output<String> id, IntegrationAccountState state, CustomResourceOptions options)
resources:  _:    type: datadog:cloudflare:IntegrationAccount    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ApiKey string
The API key (or token) for the Cloudflare account.
Email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
Name string
The name of the Cloudflare account.
Resources List<string>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
ApiKey string
The API key (or token) for the Cloudflare account.
Email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
Name string
The name of the Cloudflare account.
Resources []string
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey String
The API key (or token) for the Cloudflare account.
email String
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
name String
The name of the Cloudflare account.
resources List<String>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey string
The API key (or token) for the Cloudflare account.
email string
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
name string
The name of the Cloudflare account.
resources string[]
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
api_key str
The API key (or token) for the Cloudflare account.
email str
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
name str
The name of the Cloudflare account.
resources Sequence[str]
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).
apiKey String
The API key (or token) for the Cloudflare account.
email String
The email associated with the Cloudflare account. If an API key is provided (and not a token), this field is also required.
name String
The name of the Cloudflare account.
resources List<String>
An allowlist of resources to pull metrics for. Includes web, dns, lb (load balancer), and worker).

Import

$ pulumi import datadog:cloudflare/integrationAccount:IntegrationAccount new_list "<ID>"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Datadog pulumi/pulumi-datadog
License
Apache-2.0
Notes
This Pulumi package is based on the datadog Terraform Provider.