1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementProxmoxDataCenterServer
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const testProxmox = new checkpoint.ManagementProxmoxDataCenterServer("testProxmox", {
        name: "MyProxmox",
        tokenId: "USER@REALM!TOKEN_NAME",
        secret: "SECRET",
        hostname: "HOSTNAME",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    test_proxmox = checkpoint.ManagementProxmoxDataCenterServer("testProxmox",
        name="MyProxmox",
        token_id="USER@REALM!TOKEN_NAME",
        secret="SECRET",
        hostname="HOSTNAME")
    
    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.NewManagementProxmoxDataCenterServer(ctx, "testProxmox", &checkpoint.ManagementProxmoxDataCenterServerArgs{
    			Name:     pulumi.String("MyProxmox"),
    			TokenId:  pulumi.String("USER@REALM!TOKEN_NAME"),
    			Secret:   pulumi.String("SECRET"),
    			Hostname: pulumi.String("HOSTNAME"),
    		})
    		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 testProxmox = new Checkpoint.ManagementProxmoxDataCenterServer("testProxmox", new()
        {
            Name = "MyProxmox",
            TokenId = "USER@REALM!TOKEN_NAME",
            Secret = "SECRET",
            Hostname = "HOSTNAME",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementProxmoxDataCenterServer;
    import com.pulumi.checkpoint.ManagementProxmoxDataCenterServerArgs;
    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 testProxmox = new ManagementProxmoxDataCenterServer("testProxmox", ManagementProxmoxDataCenterServerArgs.builder()
                .name("MyProxmox")
                .tokenId("USER@REALM!TOKEN_NAME")
                .secret("SECRET")
                .hostname("HOSTNAME")
                .build());
    
        }
    }
    
    resources:
      testProxmox:
        type: checkpoint:ManagementProxmoxDataCenterServer
        properties:
          name: MyProxmox
          tokenId: USER@REALM!TOKEN_NAME
          secret: SECRET
          hostname: HOSTNAME
    

    Create ManagementProxmoxDataCenterServer Resource

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

    Constructor syntax

    new ManagementProxmoxDataCenterServer(name: string, args: ManagementProxmoxDataCenterServerArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementProxmoxDataCenterServer(resource_name: str,
                                          args: ManagementProxmoxDataCenterServerArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementProxmoxDataCenterServer(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          hostname: Optional[str] = None,
                                          secret: Optional[str] = None,
                                          token_id: 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_proxmox_data_center_server_id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          tags: Optional[Sequence[str]] = None,
                                          unsafe_auto_accept: Optional[bool] = None)
    func NewManagementProxmoxDataCenterServer(ctx *Context, name string, args ManagementProxmoxDataCenterServerArgs, opts ...ResourceOption) (*ManagementProxmoxDataCenterServer, error)
    public ManagementProxmoxDataCenterServer(string name, ManagementProxmoxDataCenterServerArgs args, CustomResourceOptions? opts = null)
    public ManagementProxmoxDataCenterServer(String name, ManagementProxmoxDataCenterServerArgs args)
    public ManagementProxmoxDataCenterServer(String name, ManagementProxmoxDataCenterServerArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementProxmoxDataCenterServer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ManagementProxmoxDataCenterServerArgs
    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 ManagementProxmoxDataCenterServerArgs
    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 ManagementProxmoxDataCenterServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementProxmoxDataCenterServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementProxmoxDataCenterServerArgs
    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 managementProxmoxDataCenterServerResource = new Checkpoint.ManagementProxmoxDataCenterServer("managementProxmoxDataCenterServerResource", new()
    {
        Hostname = "string",
        Secret = "string",
        TokenId = "string",
        CertificateFingerprint = "string",
        Color = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementProxmoxDataCenterServerId = "string",
        Name = "string",
        Tags = new[]
        {
            "string",
        },
        UnsafeAutoAccept = false,
    });
    
    example, err := checkpoint.NewManagementProxmoxDataCenterServer(ctx, "managementProxmoxDataCenterServerResource", &checkpoint.ManagementProxmoxDataCenterServerArgs{
    	Hostname:                            pulumi.String("string"),
    	Secret:                              pulumi.String("string"),
    	TokenId:                             pulumi.String("string"),
    	CertificateFingerprint:              pulumi.String("string"),
    	Color:                               pulumi.String("string"),
    	Comments:                            pulumi.String("string"),
    	IgnoreErrors:                        pulumi.Bool(false),
    	IgnoreWarnings:                      pulumi.Bool(false),
    	ManagementProxmoxDataCenterServerId: pulumi.String("string"),
    	Name:                                pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UnsafeAutoAccept: pulumi.Bool(false),
    })
    
    var managementProxmoxDataCenterServerResource = new ManagementProxmoxDataCenterServer("managementProxmoxDataCenterServerResource", ManagementProxmoxDataCenterServerArgs.builder()
        .hostname("string")
        .secret("string")
        .tokenId("string")
        .certificateFingerprint("string")
        .color("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementProxmoxDataCenterServerId("string")
        .name("string")
        .tags("string")
        .unsafeAutoAccept(false)
        .build());
    
    management_proxmox_data_center_server_resource = checkpoint.ManagementProxmoxDataCenterServer("managementProxmoxDataCenterServerResource",
        hostname="string",
        secret="string",
        token_id="string",
        certificate_fingerprint="string",
        color="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_proxmox_data_center_server_id="string",
        name="string",
        tags=["string"],
        unsafe_auto_accept=False)
    
    const managementProxmoxDataCenterServerResource = new checkpoint.ManagementProxmoxDataCenterServer("managementProxmoxDataCenterServerResource", {
        hostname: "string",
        secret: "string",
        tokenId: "string",
        certificateFingerprint: "string",
        color: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementProxmoxDataCenterServerId: "string",
        name: "string",
        tags: ["string"],
        unsafeAutoAccept: false,
    });
    
    type: checkpoint:ManagementProxmoxDataCenterServer
    properties:
        certificateFingerprint: string
        color: string
        comments: string
        hostname: string
        ignoreErrors: false
        ignoreWarnings: false
        managementProxmoxDataCenterServerId: string
        name: string
        secret: string
        tags:
            - string
        tokenId: string
        unsafeAutoAccept: false
    

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

    Hostname string
    IP Address or hostname of the Proxmox server.
    Secret string
    Secret token API.
    TokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    ManagementProxmoxDataCenterServerId string
    Name string
    Object name.
    Tags List<string>
    Collection of tag identifiers. tags blocks are documented below.
    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 Proxmox server.
    Secret string
    Secret token API.
    TokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    ManagementProxmoxDataCenterServerId string
    Name string
    Object name.
    Tags []string
    Collection of tag identifiers. tags blocks are documented below.
    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 Proxmox server.
    secret String
    Secret token API.
    tokenId String
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    managementProxmoxDataCenterServerId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    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 Proxmox server.
    secret string
    Secret token API.
    tokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    managementProxmoxDataCenterServerId string
    name string
    Object name.
    tags string[]
    Collection of tag identifiers. tags blocks are documented below.
    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 Proxmox server.
    secret str
    Secret token API.
    token_id str
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    management_proxmox_data_center_server_id str
    name str
    Object name.
    tags Sequence[str]
    Collection of tag identifiers. tags blocks are documented below.
    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 Proxmox server.
    secret String
    Secret token API.
    tokenId String
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    managementProxmoxDataCenterServerId String
    name String
    Object name.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    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 ManagementProxmoxDataCenterServer resource produces the following output properties:

    AutomaticRefresh bool
    Indicates whether the data center server's content is automatically updated.
    DataCenterType string
    Data center type.
    Id string
    The provider-assigned unique ID for this managed resource.
    AutomaticRefresh bool
    Indicates whether the data center server's content is automatically updated.
    DataCenterType string
    Data center type.
    Id string
    The provider-assigned unique ID for this managed resource.
    automaticRefresh Boolean
    Indicates whether the data center server's content is automatically updated.
    dataCenterType String
    Data center type.
    id String
    The provider-assigned unique ID for this managed resource.
    automaticRefresh boolean
    Indicates whether the data center server's content is automatically updated.
    dataCenterType string
    Data center type.
    id string
    The provider-assigned unique ID for this managed resource.
    automatic_refresh bool
    Indicates whether the data center server's content is automatically updated.
    data_center_type str
    Data center type.
    id str
    The provider-assigned unique ID for this managed resource.
    automaticRefresh Boolean
    Indicates whether the data center server's content is automatically updated.
    dataCenterType String
    Data center type.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ManagementProxmoxDataCenterServer Resource

    Get an existing ManagementProxmoxDataCenterServer 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?: ManagementProxmoxDataCenterServerState, opts?: CustomResourceOptions): ManagementProxmoxDataCenterServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            automatic_refresh: Optional[bool] = None,
            certificate_fingerprint: Optional[str] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            data_center_type: Optional[str] = None,
            hostname: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_proxmox_data_center_server_id: Optional[str] = None,
            name: Optional[str] = None,
            secret: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            token_id: Optional[str] = None,
            unsafe_auto_accept: Optional[bool] = None) -> ManagementProxmoxDataCenterServer
    func GetManagementProxmoxDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementProxmoxDataCenterServerState, opts ...ResourceOption) (*ManagementProxmoxDataCenterServer, error)
    public static ManagementProxmoxDataCenterServer Get(string name, Input<string> id, ManagementProxmoxDataCenterServerState? state, CustomResourceOptions? opts = null)
    public static ManagementProxmoxDataCenterServer get(String name, Output<String> id, ManagementProxmoxDataCenterServerState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementProxmoxDataCenterServer    get:      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:
    AutomaticRefresh bool
    Indicates whether the data center server's content is automatically updated.
    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.
    DataCenterType string
    Data center type.
    Hostname string
    IP Address or hostname of the Proxmox 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.
    ManagementProxmoxDataCenterServerId string
    Name string
    Object name.
    Secret string
    Secret token API.
    Tags List<string>
    Collection of tag identifiers. tags blocks are documented below.
    TokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    AutomaticRefresh bool
    Indicates whether the data center server's content is automatically updated.
    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.
    DataCenterType string
    Data center type.
    Hostname string
    IP Address or hostname of the Proxmox 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.
    ManagementProxmoxDataCenterServerId string
    Name string
    Object name.
    Secret string
    Secret token API.
    Tags []string
    Collection of tag identifiers. tags blocks are documented below.
    TokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    automaticRefresh Boolean
    Indicates whether the data center server's content is automatically updated.
    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.
    dataCenterType String
    Data center type.
    hostname String
    IP Address or hostname of the Proxmox 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.
    managementProxmoxDataCenterServerId String
    name String
    Object name.
    secret String
    Secret token API.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    tokenId String
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    automaticRefresh boolean
    Indicates whether the data center server's content is automatically updated.
    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.
    dataCenterType string
    Data center type.
    hostname string
    IP Address or hostname of the Proxmox 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.
    managementProxmoxDataCenterServerId string
    name string
    Object name.
    secret string
    Secret token API.
    tags string[]
    Collection of tag identifiers. tags blocks are documented below.
    tokenId string
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    automatic_refresh bool
    Indicates whether the data center server's content is automatically updated.
    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.
    data_center_type str
    Data center type.
    hostname str
    IP Address or hostname of the Proxmox 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.
    management_proxmox_data_center_server_id str
    name str
    Object name.
    secret str
    Secret token API.
    tags Sequence[str]
    Collection of tag identifiers. tags blocks are documented below.
    token_id str
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.
    automaticRefresh Boolean
    Indicates whether the data center server's content is automatically updated.
    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.
    dataCenterType String
    Data center type.
    hostname String
    IP Address or hostname of the Proxmox 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.
    managementProxmoxDataCenterServerId String
    name String
    Object name.
    secret String
    Secret token API.
    tags List<String>
    Collection of tag identifiers. tags blocks are documented below.
    tokenId String
    API Token Id. In the format of <Username>@<Realm>!<Token-Name>.
    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.0.0
    published on Monday, Mar 30, 2026 by checkpointsw
      Try Pulumi Cloud free. Your team will thank you.