1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementResourceFtp
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementResourceFtp

Explore with Pulumi AI

This resource allows you to execute Check Point Resource Ftp.

Example Usage

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

const example = new checkpoint.ManagementResourceFtp("example", {
    cvp: {
        allowedToModifyContent: true,
        enableCvp: false,
        replyOrder: "return_data_before_content_is_approved",
        server: "serverName",
    },
    exceptionTrack: "exception log",
    resourceMatchingMethod: "get_and_put",
    resourcesPath: "path",
});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

example = checkpoint.ManagementResourceFtp("example",
    cvp={
        "allowed_to_modify_content": True,
        "enable_cvp": False,
        "reply_order": "return_data_before_content_is_approved",
        "server": "serverName",
    },
    exception_track="exception log",
    resource_matching_method="get_and_put",
    resources_path="path")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := checkpoint.NewManagementResourceFtp(ctx, "example", &checkpoint.ManagementResourceFtpArgs{
			Cvp: &checkpoint.ManagementResourceFtpCvpArgs{
				AllowedToModifyContent: pulumi.Bool(true),
				EnableCvp:              pulumi.Bool(false),
				ReplyOrder:             pulumi.String("return_data_before_content_is_approved"),
				Server:                 pulumi.String("serverName"),
			},
			ExceptionTrack:         pulumi.String("exception log"),
			ResourceMatchingMethod: pulumi.String("get_and_put"),
			ResourcesPath:          pulumi.String("path"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementResourceFtp("example", new()
    {
        Cvp = new Checkpoint.Inputs.ManagementResourceFtpCvpArgs
        {
            AllowedToModifyContent = true,
            EnableCvp = false,
            ReplyOrder = "return_data_before_content_is_approved",
            Server = "serverName",
        },
        ExceptionTrack = "exception log",
        ResourceMatchingMethod = "get_and_put",
        ResourcesPath = "path",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementResourceFtp;
import com.pulumi.checkpoint.ManagementResourceFtpArgs;
import com.pulumi.checkpoint.inputs.ManagementResourceFtpCvpArgs;
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 example = new ManagementResourceFtp("example", ManagementResourceFtpArgs.builder()
            .cvp(ManagementResourceFtpCvpArgs.builder()
                .allowedToModifyContent(true)
                .enableCvp(false)
                .replyOrder("return_data_before_content_is_approved")
                .server("serverName")
                .build())
            .exceptionTrack("exception log")
            .resourceMatchingMethod("get_and_put")
            .resourcesPath("path")
            .build());

    }
}
Copy
resources:
  example:
    type: checkpoint:ManagementResourceFtp
    properties:
      cvp:
        allowedToModifyContent: true
        enableCvp: false
        replyOrder: return_data_before_content_is_approved
        server: serverName
      exceptionTrack: exception log
      resourceMatchingMethod: get_and_put
      resourcesPath: path
Copy

Create ManagementResourceFtp Resource

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

Constructor syntax

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

@overload
def ManagementResourceFtp(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_matching_method: Optional[str] = None,
                          color: Optional[str] = None,
                          comments: Optional[str] = None,
                          cvp: Optional[ManagementResourceFtpCvpArgs] = None,
                          exception_track: Optional[str] = None,
                          ignore_errors: Optional[bool] = None,
                          ignore_warnings: Optional[bool] = None,
                          management_resource_ftp_id: Optional[str] = None,
                          name: Optional[str] = None,
                          resources_path: Optional[str] = None,
                          tags: Optional[Sequence[str]] = None)
func NewManagementResourceFtp(ctx *Context, name string, args ManagementResourceFtpArgs, opts ...ResourceOption) (*ManagementResourceFtp, error)
public ManagementResourceFtp(string name, ManagementResourceFtpArgs args, CustomResourceOptions? opts = null)
public ManagementResourceFtp(String name, ManagementResourceFtpArgs args)
public ManagementResourceFtp(String name, ManagementResourceFtpArgs args, CustomResourceOptions options)
type: checkpoint:ManagementResourceFtp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagementResourceFtpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagementResourceFtpArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementResourceFtpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementResourceFtpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementResourceFtpArgs
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 managementResourceFtpResource = new Checkpoint.ManagementResourceFtp("managementResourceFtpResource", new()
{
    ResourceMatchingMethod = "string",
    Color = "string",
    Comments = "string",
    Cvp = new Checkpoint.Inputs.ManagementResourceFtpCvpArgs
    {
        AllowedToModifyContent = false,
        EnableCvp = false,
        ReplyOrder = "string",
        Server = "string",
    },
    ExceptionTrack = "string",
    IgnoreErrors = false,
    IgnoreWarnings = false,
    ManagementResourceFtpId = "string",
    Name = "string",
    ResourcesPath = "string",
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := checkpoint.NewManagementResourceFtp(ctx, "managementResourceFtpResource", &checkpoint.ManagementResourceFtpArgs{
ResourceMatchingMethod: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
Cvp: &.ManagementResourceFtpCvpArgs{
AllowedToModifyContent: pulumi.Bool(false),
EnableCvp: pulumi.Bool(false),
ReplyOrder: pulumi.String("string"),
Server: pulumi.String("string"),
},
ExceptionTrack: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementResourceFtpId: pulumi.String("string"),
Name: pulumi.String("string"),
ResourcesPath: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var managementResourceFtpResource = new ManagementResourceFtp("managementResourceFtpResource", ManagementResourceFtpArgs.builder()
    .resourceMatchingMethod("string")
    .color("string")
    .comments("string")
    .cvp(ManagementResourceFtpCvpArgs.builder()
        .allowedToModifyContent(false)
        .enableCvp(false)
        .replyOrder("string")
        .server("string")
        .build())
    .exceptionTrack("string")
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .managementResourceFtpId("string")
    .name("string")
    .resourcesPath("string")
    .tags("string")
    .build());
Copy
management_resource_ftp_resource = checkpoint.ManagementResourceFtp("managementResourceFtpResource",
    resource_matching_method="string",
    color="string",
    comments="string",
    cvp={
        "allowed_to_modify_content": False,
        "enable_cvp": False,
        "reply_order": "string",
        "server": "string",
    },
    exception_track="string",
    ignore_errors=False,
    ignore_warnings=False,
    management_resource_ftp_id="string",
    name="string",
    resources_path="string",
    tags=["string"])
Copy
const managementResourceFtpResource = new checkpoint.ManagementResourceFtp("managementResourceFtpResource", {
    resourceMatchingMethod: "string",
    color: "string",
    comments: "string",
    cvp: {
        allowedToModifyContent: false,
        enableCvp: false,
        replyOrder: "string",
        server: "string",
    },
    exceptionTrack: "string",
    ignoreErrors: false,
    ignoreWarnings: false,
    managementResourceFtpId: "string",
    name: "string",
    resourcesPath: "string",
    tags: ["string"],
});
Copy
type: checkpoint:ManagementResourceFtp
properties:
    color: string
    comments: string
    cvp:
        allowedToModifyContent: false
        enableCvp: false
        replyOrder: string
        server: string
    exceptionTrack: string
    ignoreErrors: false
    ignoreWarnings: false
    managementResourceFtpId: string
    name: string
    resourceMatchingMethod: string
    resourcesPath: string
    tags:
        - string
Copy

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

ResourceMatchingMethod This property is required. string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
Cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
ExceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
ManagementResourceFtpId string
Name string
Object name.
ResourcesPath string
Refers to a location on the FTP server.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
ResourceMatchingMethod This property is required. string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
Cvp ManagementResourceFtpCvpArgs
Configure CVP inspection on mail messages.cvp blocks are documented below.
ExceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
ManagementResourceFtpId string
Name string
Object name.
ResourcesPath string
Refers to a location on the FTP server.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
resourceMatchingMethod This property is required. String
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack String
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId String
name String
Object name.
resourcesPath String
Refers to a location on the FTP server.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
resourceMatchingMethod This property is required. string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId string
name string
Object name.
resourcesPath string
Refers to a location on the FTP server.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
resource_matching_method This property is required. str
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
cvp ManagementResourceFtpCvpArgs
Configure CVP inspection on mail messages.cvp blocks are documented below.
exception_track str
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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_resource_ftp_id str
name str
Object name.
resources_path str
Refers to a location on the FTP server.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
resourceMatchingMethod This property is required. String
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
cvp Property Map
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack String
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId String
name String
Object name.
resourcesPath String
Refers to a location on the FTP server.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.

Outputs

All input properties are implicitly available as output properties. Additionally, the ManagementResourceFtp resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ManagementResourceFtp Resource

Get an existing ManagementResourceFtp 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?: ManagementResourceFtpState, opts?: CustomResourceOptions): ManagementResourceFtp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        cvp: Optional[ManagementResourceFtpCvpArgs] = None,
        exception_track: Optional[str] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        management_resource_ftp_id: Optional[str] = None,
        name: Optional[str] = None,
        resource_matching_method: Optional[str] = None,
        resources_path: Optional[str] = None,
        tags: Optional[Sequence[str]] = None) -> ManagementResourceFtp
func GetManagementResourceFtp(ctx *Context, name string, id IDInput, state *ManagementResourceFtpState, opts ...ResourceOption) (*ManagementResourceFtp, error)
public static ManagementResourceFtp Get(string name, Input<string> id, ManagementResourceFtpState? state, CustomResourceOptions? opts = null)
public static ManagementResourceFtp get(String name, Output<String> id, ManagementResourceFtpState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementResourceFtp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
Cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
ExceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
ManagementResourceFtpId string
Name string
Object name.
ResourceMatchingMethod string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
ResourcesPath string
Refers to a location on the FTP server.
Tags List<string>
Collection of tag identifiers.tags blocks are documented below.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
Cvp ManagementResourceFtpCvpArgs
Configure CVP inspection on mail messages.cvp blocks are documented below.
ExceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
ManagementResourceFtpId string
Name string
Object name.
ResourceMatchingMethod string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
ResourcesPath string
Refers to a location on the FTP server.
Tags []string
Collection of tag identifiers.tags blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack String
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId String
name String
Object name.
resourceMatchingMethod String
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
resourcesPath String
Refers to a location on the FTP server.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
cvp ManagementResourceFtpCvp
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack string
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId string
name string
Object name.
resourceMatchingMethod string
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
resourcesPath string
Refers to a location on the FTP server.
tags string[]
Collection of tag identifiers.tags blocks are documented below.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
cvp ManagementResourceFtpCvpArgs
Configure CVP inspection on mail messages.cvp blocks are documented below.
exception_track str
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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_resource_ftp_id str
name str
Object name.
resource_matching_method str
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
resources_path str
Refers to a location on the FTP server.
tags Sequence[str]
Collection of tag identifiers.tags blocks are documented below.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
cvp Property Map
Configure CVP inspection on mail messages.cvp blocks are documented below.
exceptionTrack String
The UID or Name of the exception track to be used to log actions taken as a result of a match on the resource.
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.
managementResourceFtpId String
name String
Object name.
resourceMatchingMethod String
GET allows Downloads from the server to the client. PUT allows Uploads from the client to the server.
resourcesPath String
Refers to a location on the FTP server.
tags List<String>
Collection of tag identifiers.tags blocks are documented below.

Supporting Types

ManagementResourceFtpCvp
, ManagementResourceFtpCvpArgs

AllowedToModifyContent bool
Configures the CVP server to inspect but not modify content.
EnableCvp bool
Select to enable the Content Vectoring Protocol.
ReplyOrder string
Designates when the CVP server returns data to the Security Gateway security server.
Server string
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
AllowedToModifyContent bool
Configures the CVP server to inspect but not modify content.
EnableCvp bool
Select to enable the Content Vectoring Protocol.
ReplyOrder string
Designates when the CVP server returns data to the Security Gateway security server.
Server string
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
allowedToModifyContent Boolean
Configures the CVP server to inspect but not modify content.
enableCvp Boolean
Select to enable the Content Vectoring Protocol.
replyOrder String
Designates when the CVP server returns data to the Security Gateway security server.
server String
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
allowedToModifyContent boolean
Configures the CVP server to inspect but not modify content.
enableCvp boolean
Select to enable the Content Vectoring Protocol.
replyOrder string
Designates when the CVP server returns data to the Security Gateway security server.
server string
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
allowed_to_modify_content bool
Configures the CVP server to inspect but not modify content.
enable_cvp bool
Select to enable the Content Vectoring Protocol.
reply_order str
Designates when the CVP server returns data to the Security Gateway security server.
server str
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
allowedToModifyContent Boolean
Configures the CVP server to inspect but not modify content.
enableCvp Boolean
Select to enable the Content Vectoring Protocol.
replyOrder String
Designates when the CVP server returns data to the Security Gateway security server.
server String
The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.