1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementGuardicoreDataCenterServer
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const testGuardicore = new checkpoint.ManagementGuardicoreDataCenterServer("testGuardicore", {
        name: "MY-GUARDICORE",
        hostname: "127.0.0.1",
        username: "admin",
        password: "MY-PASSWORD",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    test_guardicore = checkpoint.ManagementGuardicoreDataCenterServer("testGuardicore",
        name="MY-GUARDICORE",
        hostname="127.0.0.1",
        username="admin",
        password="MY-PASSWORD")
    
    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.NewManagementGuardicoreDataCenterServer(ctx, "testGuardicore", &checkpoint.ManagementGuardicoreDataCenterServerArgs{
    			Name:     pulumi.String("MY-GUARDICORE"),
    			Hostname: pulumi.String("127.0.0.1"),
    			Username: pulumi.String("admin"),
    			Password: pulumi.String("MY-PASSWORD"),
    		})
    		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 testGuardicore = new Checkpoint.ManagementGuardicoreDataCenterServer("testGuardicore", new()
        {
            Name = "MY-GUARDICORE",
            Hostname = "127.0.0.1",
            Username = "admin",
            Password = "MY-PASSWORD",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementGuardicoreDataCenterServer;
    import com.pulumi.checkpoint.ManagementGuardicoreDataCenterServerArgs;
    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 testGuardicore = new ManagementGuardicoreDataCenterServer("testGuardicore", ManagementGuardicoreDataCenterServerArgs.builder()
                .name("MY-GUARDICORE")
                .hostname("127.0.0.1")
                .username("admin")
                .password("MY-PASSWORD")
                .build());
    
        }
    }
    
    resources:
      testGuardicore:
        type: checkpoint:ManagementGuardicoreDataCenterServer
        properties:
          name: MY-GUARDICORE
          hostname: 127.0.0.1
          username: admin
          password: MY-PASSWORD
    
    Example coming soon!
    

    Create ManagementGuardicoreDataCenterServer Resource

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

    Constructor syntax

    new ManagementGuardicoreDataCenterServer(name: string, args: ManagementGuardicoreDataCenterServerArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementGuardicoreDataCenterServer(resource_name: str,
                                             args: ManagementGuardicoreDataCenterServerArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementGuardicoreDataCenterServer(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             hostname: Optional[str] = None,
                                             password: Optional[str] = None,
                                             username: Optional[str] = None,
                                             certificate_fingerprint: Optional[str] = None,
                                             color: Optional[str] = None,
                                             comments: Optional[str] = None,
                                             ignore_errors: Optional[bool] = None,
                                             ignore_warnings: Optional[bool] = None,
                                             management_guardicore_data_center_server_id: Optional[str] = None,
                                             name: Optional[str] = None,
                                             tags: Optional[Sequence[str]] = None,
                                             unsafe_auto_accept: Optional[bool] = None)
    func NewManagementGuardicoreDataCenterServer(ctx *Context, name string, args ManagementGuardicoreDataCenterServerArgs, opts ...ResourceOption) (*ManagementGuardicoreDataCenterServer, error)
    public ManagementGuardicoreDataCenterServer(string name, ManagementGuardicoreDataCenterServerArgs args, CustomResourceOptions? opts = null)
    public ManagementGuardicoreDataCenterServer(String name, ManagementGuardicoreDataCenterServerArgs args)
    public ManagementGuardicoreDataCenterServer(String name, ManagementGuardicoreDataCenterServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementGuardicoreDataCenterServer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_guardicore_data_center_server" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementGuardicoreDataCenterServerArgs
    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 ManagementGuardicoreDataCenterServerArgs
    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 ManagementGuardicoreDataCenterServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementGuardicoreDataCenterServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementGuardicoreDataCenterServerArgs
    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 managementGuardicoreDataCenterServerResource = new Checkpoint.ManagementGuardicoreDataCenterServer("managementGuardicoreDataCenterServerResource", new()
    {
        Hostname = "string",
        Password = "string",
        Username = "string",
        CertificateFingerprint = "string",
        Color = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementGuardicoreDataCenterServerId = "string",
        Name = "string",
        Tags = new[]
        {
            "string",
        },
        UnsafeAutoAccept = false,
    });
    
    example, err := checkpoint.NewManagementGuardicoreDataCenterServer(ctx, "managementGuardicoreDataCenterServerResource", &checkpoint.ManagementGuardicoreDataCenterServerArgs{
    	Hostname:                               pulumi.String("string"),
    	Password:                               pulumi.String("string"),
    	Username:                               pulumi.String("string"),
    	CertificateFingerprint:                 pulumi.String("string"),
    	Color:                                  pulumi.String("string"),
    	Comments:                               pulumi.String("string"),
    	IgnoreErrors:                           pulumi.Bool(false),
    	IgnoreWarnings:                         pulumi.Bool(false),
    	ManagementGuardicoreDataCenterServerId: pulumi.String("string"),
    	Name:                                   pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UnsafeAutoAccept: pulumi.Bool(false),
    })
    
    resource "checkpoint_management_guardicore_data_center_server" "managementGuardicoreDataCenterServerResource" {
      lifecycle {
        create_before_destroy = true
      }
      hostname                                    = "string"
      password                                    = "string"
      username                                    = "string"
      certificate_fingerprint                     = "string"
      color                                       = "string"
      comments                                    = "string"
      ignore_errors                               = false
      ignore_warnings                             = false
      management_guardicore_data_center_server_id = "string"
      name                                        = "string"
      tags                                        = ["string"]
      unsafe_auto_accept                          = false
    }
    
    var managementGuardicoreDataCenterServerResource = new ManagementGuardicoreDataCenterServer("managementGuardicoreDataCenterServerResource", ManagementGuardicoreDataCenterServerArgs.builder()
        .hostname("string")
        .password("string")
        .username("string")
        .certificateFingerprint("string")
        .color("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementGuardicoreDataCenterServerId("string")
        .name("string")
        .tags("string")
        .unsafeAutoAccept(false)
        .build());
    
    management_guardicore_data_center_server_resource = checkpoint.ManagementGuardicoreDataCenterServer("managementGuardicoreDataCenterServerResource",
        hostname="string",
        password="string",
        username="string",
        certificate_fingerprint="string",
        color="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_guardicore_data_center_server_id="string",
        name="string",
        tags=["string"],
        unsafe_auto_accept=False)
    
    const managementGuardicoreDataCenterServerResource = new checkpoint.ManagementGuardicoreDataCenterServer("managementGuardicoreDataCenterServerResource", {
        hostname: "string",
        password: "string",
        username: "string",
        certificateFingerprint: "string",
        color: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementGuardicoreDataCenterServerId: "string",
        name: "string",
        tags: ["string"],
        unsafeAutoAccept: false,
    });
    
    type: checkpoint:ManagementGuardicoreDataCenterServer
    properties:
        certificateFingerprint: string
        color: string
        comments: string
        hostname: string
        ignoreErrors: false
        ignoreWarnings: false
        managementGuardicoreDataCenterServerId: string
        name: string
        password: string
        tags:
            - string
        unsafeAutoAccept: false
        username: string
    

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

    Hostname string
    IP Address or hostname of the Guardicore Centra management server.
    Password string
    Password for Guardicore Centra.
    Username string
    Username for Guardicore Centra.
    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.
    ManagementGuardicoreDataCenterServerId 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.
    Hostname string
    IP Address or hostname of the Guardicore Centra management server.
    Password string
    Password for Guardicore Centra.
    Username string
    Username for Guardicore Centra.
    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.
    ManagementGuardicoreDataCenterServerId 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.
    hostname string
    IP Address or hostname of the Guardicore Centra management server.
    password string
    Password for Guardicore Centra.
    username string
    Username for Guardicore Centra.
    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_guardicore_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.
    hostname String
    IP Address or hostname of the Guardicore Centra management server.
    password String
    Password for Guardicore Centra.
    username String
    Username for Guardicore Centra.
    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.
    managementGuardicoreDataCenterServerId 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.
    hostname string
    IP Address or hostname of the Guardicore Centra management server.
    password string
    Password for Guardicore Centra.
    username string
    Username for Guardicore Centra.
    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.
    managementGuardicoreDataCenterServerId 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.
    hostname str
    IP Address or hostname of the Guardicore Centra management server.
    password str
    Password for Guardicore Centra.
    username str
    Username for Guardicore Centra.
    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_guardicore_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.
    hostname String
    IP Address or hostname of the Guardicore Centra management server.
    password String
    Password for Guardicore Centra.
    username String
    Username for Guardicore Centra.
    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.
    managementGuardicoreDataCenterServerId 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 ManagementGuardicoreDataCenterServer 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 ManagementGuardicoreDataCenterServer Resource

    Get an existing ManagementGuardicoreDataCenterServer 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?: ManagementGuardicoreDataCenterServerState, opts?: CustomResourceOptions): ManagementGuardicoreDataCenterServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = 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_guardicore_data_center_server_id: Optional[str] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            unsafe_auto_accept: Optional[bool] = None,
            username: Optional[str] = None) -> ManagementGuardicoreDataCenterServer
    func GetManagementGuardicoreDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementGuardicoreDataCenterServerState, opts ...ResourceOption) (*ManagementGuardicoreDataCenterServer, error)
    public static ManagementGuardicoreDataCenterServer Get(string name, Input<string> id, ManagementGuardicoreDataCenterServerState? state, CustomResourceOptions? opts = null)
    public static ManagementGuardicoreDataCenterServer get(String name, Output<String> id, ManagementGuardicoreDataCenterServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementGuardicoreDataCenterServer    get:      id: ${id}
    import {
      to = checkpoint_management_guardicore_data_center_server.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:
    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 Guardicore Centra management 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.
    ManagementGuardicoreDataCenterServerId string
    Name string
    Object name.
    Password string
    Password for Guardicore Centra.
    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.
    Username string
    Username for Guardicore Centra.
    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 Guardicore Centra management 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.
    ManagementGuardicoreDataCenterServerId string
    Name string
    Object name.
    Password string
    Password for Guardicore Centra.
    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.
    Username string
    Username for Guardicore Centra.
    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 Guardicore Centra management 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_guardicore_data_center_server_id string
    name string
    Object name.
    password string
    Password for Guardicore Centra.
    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.
    username string
    Username for Guardicore Centra.
    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 Guardicore Centra management 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.
    managementGuardicoreDataCenterServerId String
    name String
    Object name.
    password String
    Password for Guardicore Centra.
    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.
    username String
    Username for Guardicore Centra.
    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 Guardicore Centra management 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.
    managementGuardicoreDataCenterServerId string
    name string
    Object name.
    password string
    Password for Guardicore Centra.
    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.
    username string
    Username for Guardicore Centra.
    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 Guardicore Centra management 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_guardicore_data_center_server_id str
    name str
    Object name.
    password str
    Password for Guardicore Centra.
    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.
    username str
    Username for Guardicore Centra.
    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 Guardicore Centra management 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.
    managementGuardicoreDataCenterServerId String
    name String
    Object name.
    password String
    Password for Guardicore Centra.
    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.
    username String
    Username for Guardicore Centra.

    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.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial