1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementIllumioDataCenterServer
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Illumio Data Center Server.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const testIllumio = new checkpoint.ManagementIllumioDataCenterServer("testIllumio", {
        name: "MY-ILLUMIO",
        hostname: "127.0.0.1",
        orgId: 1234567,
        authUsername: "api_user",
        secret: "secret",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    test_illumio = checkpoint.ManagementIllumioDataCenterServer("testIllumio",
        name="MY-ILLUMIO",
        hostname="127.0.0.1",
        org_id=1234567,
        auth_username="api_user",
        secret="secret")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementIllumioDataCenterServer(ctx, "testIllumio", &checkpoint.ManagementIllumioDataCenterServerArgs{
    			Name:         pulumi.String("MY-ILLUMIO"),
    			Hostname:     pulumi.String("127.0.0.1"),
    			OrgId:        pulumi.Float64(1234567),
    			AuthUsername: pulumi.String("api_user"),
    			Secret:       pulumi.String("secret"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var testIllumio = new Checkpoint.ManagementIllumioDataCenterServer("testIllumio", new()
        {
            Name = "MY-ILLUMIO",
            Hostname = "127.0.0.1",
            OrgId = 1234567,
            AuthUsername = "api_user",
            Secret = "secret",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementIllumioDataCenterServer;
    import com.pulumi.checkpoint.ManagementIllumioDataCenterServerArgs;
    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 testIllumio = new ManagementIllumioDataCenterServer("testIllumio", ManagementIllumioDataCenterServerArgs.builder()
                .name("MY-ILLUMIO")
                .hostname("127.0.0.1")
                .orgId(1234567.0)
                .authUsername("api_user")
                .secret("secret")
                .build());
    
        }
    }
    
    resources:
      testIllumio:
        type: checkpoint:ManagementIllumioDataCenterServer
        properties:
          name: MY-ILLUMIO
          hostname: 127.0.0.1
          orgId: 1.234567e+06
          authUsername: api_user
          secret: secret
    
    Example coming soon!
    

    Create ManagementIllumioDataCenterServer Resource

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

    Constructor syntax

    new ManagementIllumioDataCenterServer(name: string, args: ManagementIllumioDataCenterServerArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementIllumioDataCenterServer(resource_name: str,
                                          args: ManagementIllumioDataCenterServerArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementIllumioDataCenterServer(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          hostname: Optional[str] = None,
                                          secret: Optional[str] = None,
                                          org_id: Optional[float] = None,
                                          auth_username: Optional[str] = None,
                                          comments: Optional[str] = None,
                                          ignore_errors: Optional[bool] = None,
                                          ignore_warnings: Optional[bool] = None,
                                          management_illumio_data_center_server_id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          color: Optional[str] = None,
                                          certificate_fingerprint: Optional[str] = None,
                                          tags: Optional[Sequence[str]] = None,
                                          unsafe_auto_accept: Optional[bool] = None)
    func NewManagementIllumioDataCenterServer(ctx *Context, name string, args ManagementIllumioDataCenterServerArgs, opts ...ResourceOption) (*ManagementIllumioDataCenterServer, error)
    public ManagementIllumioDataCenterServer(string name, ManagementIllumioDataCenterServerArgs args, CustomResourceOptions? opts = null)
    public ManagementIllumioDataCenterServer(String name, ManagementIllumioDataCenterServerArgs args)
    public ManagementIllumioDataCenterServer(String name, ManagementIllumioDataCenterServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementIllumioDataCenterServer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_managementillumiodatacenterserver" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementIllumioDataCenterServerArgs
    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 ManagementIllumioDataCenterServerArgs
    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 ManagementIllumioDataCenterServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementIllumioDataCenterServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementIllumioDataCenterServerArgs
    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 managementIllumioDataCenterServerResource = new Checkpoint.ManagementIllumioDataCenterServer("managementIllumioDataCenterServerResource", new()
    {
        Hostname = "string",
        Secret = "string",
        OrgId = 0,
        AuthUsername = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementIllumioDataCenterServerId = "string",
        Name = "string",
        Color = "string",
        CertificateFingerprint = "string",
        Tags = new[]
        {
            "string",
        },
        UnsafeAutoAccept = false,
    });
    
    example, err := checkpoint.NewManagementIllumioDataCenterServer(ctx, "managementIllumioDataCenterServerResource", &checkpoint.ManagementIllumioDataCenterServerArgs{
    	Hostname:                            pulumi.String("string"),
    	Secret:                              pulumi.String("string"),
    	OrgId:                               pulumi.Float64(0),
    	AuthUsername:                        pulumi.String("string"),
    	Comments:                            pulumi.String("string"),
    	IgnoreErrors:                        pulumi.Bool(false),
    	IgnoreWarnings:                      pulumi.Bool(false),
    	ManagementIllumioDataCenterServerId: pulumi.String("string"),
    	Name:                                pulumi.String("string"),
    	Color:                               pulumi.String("string"),
    	CertificateFingerprint:              pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UnsafeAutoAccept: pulumi.Bool(false),
    })
    
    resource "checkpoint_managementillumiodatacenterserver" "managementIllumioDataCenterServerResource" {
      hostname                                 = "string"
      secret                                   = "string"
      org_id                                   = 0
      auth_username                            = "string"
      comments                                 = "string"
      ignore_errors                            = false
      ignore_warnings                          = false
      management_illumio_data_center_server_id = "string"
      name                                     = "string"
      color                                    = "string"
      certificate_fingerprint                  = "string"
      tags                                     = ["string"]
      unsafe_auto_accept                       = false
    }
    
    var managementIllumioDataCenterServerResource = new ManagementIllumioDataCenterServer("managementIllumioDataCenterServerResource", ManagementIllumioDataCenterServerArgs.builder()
        .hostname("string")
        .secret("string")
        .orgId(0.0)
        .authUsername("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementIllumioDataCenterServerId("string")
        .name("string")
        .color("string")
        .certificateFingerprint("string")
        .tags("string")
        .unsafeAutoAccept(false)
        .build());
    
    management_illumio_data_center_server_resource = checkpoint.ManagementIllumioDataCenterServer("managementIllumioDataCenterServerResource",
        hostname="string",
        secret="string",
        org_id=float(0),
        auth_username="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_illumio_data_center_server_id="string",
        name="string",
        color="string",
        certificate_fingerprint="string",
        tags=["string"],
        unsafe_auto_accept=False)
    
    const managementIllumioDataCenterServerResource = new checkpoint.ManagementIllumioDataCenterServer("managementIllumioDataCenterServerResource", {
        hostname: "string",
        secret: "string",
        orgId: 0,
        authUsername: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementIllumioDataCenterServerId: "string",
        name: "string",
        color: "string",
        certificateFingerprint: "string",
        tags: ["string"],
        unsafeAutoAccept: false,
    });
    
    type: checkpoint:ManagementIllumioDataCenterServer
    properties:
        authUsername: string
        certificateFingerprint: string
        color: string
        comments: string
        hostname: string
        ignoreErrors: false
        ignoreWarnings: false
        managementIllumioDataCenterServerId: string
        name: string
        orgId: 0
        secret: string
        tags:
            - string
        unsafeAutoAccept: false
    

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

    AuthUsername string
    Authentication username.
    Hostname string
    IP address or hostname of the Illumio PCE server.
    OrgId double
    Organization ID in the Illumio PCE.
    Secret string
    Secret for authentication.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    ManagementIllumioDataCenterServerId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    AuthUsername string
    Authentication username.
    Hostname string
    IP address or hostname of the Illumio PCE server.
    OrgId float64
    Organization ID in the Illumio PCE.
    Secret string
    Secret for authentication.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    ManagementIllumioDataCenterServerId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    auth_username string
    Authentication username.
    hostname string
    IP address or hostname of the Illumio PCE server.
    org_id number
    Organization ID in the Illumio PCE.
    secret string
    Secret for authentication.
    certificate_fingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    management_illumio_data_center_server_id string
    name string
    Object name.
    tags list(string)
    Collection of tag identifiers.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername String
    Authentication username.
    hostname String
    IP address or hostname of the Illumio PCE server.
    orgId Double
    Organization ID in the Illumio PCE.
    secret String
    Secret for authentication.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername string
    Authentication username.
    hostname string
    IP address or hostname of the Illumio PCE server.
    orgId number
    Organization ID in the Illumio PCE.
    secret string
    Secret for authentication.
    certificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers.
    unsafeAutoAccept boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    auth_username str
    Authentication username.
    hostname str
    IP address or hostname of the Illumio PCE server.
    org_id float
    Organization ID in the Illumio PCE.
    secret str
    Secret for authentication.
    certificate_fingerprint str
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    management_illumio_data_center_server_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername String
    Authentication username.
    hostname String
    IP address or hostname of the Illumio PCE server.
    orgId Number
    Organization ID in the Illumio PCE.
    secret String
    Secret for authentication.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.

    Outputs

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

    Get an existing ManagementIllumioDataCenterServer 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?: ManagementIllumioDataCenterServerState, opts?: CustomResourceOptions): ManagementIllumioDataCenterServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auth_username: Optional[str] = None,
            certificate_fingerprint: Optional[str] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            hostname: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_illumio_data_center_server_id: Optional[str] = None,
            name: Optional[str] = None,
            org_id: Optional[float] = None,
            secret: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            unsafe_auto_accept: Optional[bool] = None) -> ManagementIllumioDataCenterServer
    func GetManagementIllumioDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementIllumioDataCenterServerState, opts ...ResourceOption) (*ManagementIllumioDataCenterServer, error)
    public static ManagementIllumioDataCenterServer Get(string name, Input<string> id, ManagementIllumioDataCenterServerState? state, CustomResourceOptions? opts = null)
    public static ManagementIllumioDataCenterServer get(String name, Output<String> id, ManagementIllumioDataCenterServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementIllumioDataCenterServer    get:      id: ${id}
    import {
      to = checkpoint_managementillumiodatacenterserver.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.
    The following state arguments are supported:
    AuthUsername string
    Authentication username.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Hostname string
    IP address or hostname of the Illumio PCE server.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    ManagementIllumioDataCenterServerId string
    Name string
    Object name.
    OrgId double
    Organization ID in the Illumio PCE.
    Secret string
    Secret for authentication.
    Tags List<string>
    Collection of tag identifiers.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    AuthUsername string
    Authentication username.
    CertificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    Hostname string
    IP address or hostname of the Illumio PCE server.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    ManagementIllumioDataCenterServerId string
    Name string
    Object name.
    OrgId float64
    Organization ID in the Illumio PCE.
    Secret string
    Secret for authentication.
    Tags []string
    Collection of tag identifiers.
    UnsafeAutoAccept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    auth_username string
    Authentication username.
    certificate_fingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    hostname string
    IP address or hostname of the Illumio PCE server.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    management_illumio_data_center_server_id string
    name string
    Object name.
    org_id number
    Organization ID in the Illumio PCE.
    secret string
    Secret for authentication.
    tags list(string)
    Collection of tag identifiers.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername String
    Authentication username.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostname String
    IP address or hostname of the Illumio PCE server.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId String
    name String
    Object name.
    orgId Double
    Organization ID in the Illumio PCE.
    secret String
    Secret for authentication.
    tags List<String>
    Collection of tag identifiers.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername string
    Authentication username.
    certificateFingerprint string
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    hostname string
    IP address or hostname of the Illumio PCE server.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId string
    name string
    Object name.
    orgId number
    Organization ID in the Illumio PCE.
    secret string
    Secret for authentication.
    tags string[]
    Collection of tag identifiers.
    unsafeAutoAccept boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    auth_username str
    Authentication username.
    certificate_fingerprint str
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    hostname str
    IP address or hostname of the Illumio PCE server.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    management_illumio_data_center_server_id str
    name str
    Object name.
    org_id float
    Organization ID in the Illumio PCE.
    secret str
    Secret for authentication.
    tags Sequence[str]
    Collection of tag identifiers.
    unsafe_auto_accept bool
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
    authUsername String
    Authentication username.
    certificateFingerprint String
    Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    hostname String
    IP address or hostname of the Illumio PCE server.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings. By Setting this parameter to 'true' test connection failure will be ignored.
    managementIllumioDataCenterServerId String
    name String
    Object name.
    orgId Number
    Organization ID in the Illumio PCE.
    secret String
    Secret for authentication.
    tags List<String>
    Collection of tag identifiers.
    unsafeAutoAccept Boolean
    When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial