checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
checkpoint.getManagementInterface
Start a Neo task
Explain and create a checkpoint.getManagementInterface resource
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Interface.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementInterface("example", {
antiSpoofing: true,
clusterNetworkType: "cluster",
gatewayUid: "20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17",
ignoreWarnings: false,
ipv4Address: "1.1.1.111",
ipv4MaskLength: 24,
topology: "internal",
});
const data = checkpoint.getManagementInterfaceOutput({
gatewayUid: example.gatewayUid,
name: example.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementInterface("example",
anti_spoofing=True,
cluster_network_type="cluster",
gateway_uid="20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17",
ignore_warnings=False,
ipv4_address="1.1.1.111",
ipv4_mask_length=24,
topology="internal")
data = checkpoint.get_management_interface_output(gateway_uid=example.gateway_uid,
name=example.name)
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 {
example, err := checkpoint.NewManagementInterface(ctx, "example", &checkpoint.ManagementInterfaceArgs{
AntiSpoofing: pulumi.Bool(true),
ClusterNetworkType: pulumi.String("cluster"),
GatewayUid: pulumi.String("20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17"),
IgnoreWarnings: pulumi.Bool(false),
Ipv4Address: pulumi.String("1.1.1.111"),
Ipv4MaskLength: pulumi.Float64(24),
Topology: pulumi.String("internal"),
})
if err != nil {
return err
}
_ = checkpoint.LookupManagementInterfaceOutput(ctx, checkpoint.GetManagementInterfaceOutputArgs{
GatewayUid: example.GatewayUid,
Name: example.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementInterface("example", new()
{
AntiSpoofing = true,
ClusterNetworkType = "cluster",
GatewayUid = "20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17",
IgnoreWarnings = false,
Ipv4Address = "1.1.1.111",
Ipv4MaskLength = 24,
Topology = "internal",
});
var data = Checkpoint.GetManagementInterface.Invoke(new()
{
GatewayUid = example.GatewayUid,
Name = example.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementInterface;
import com.pulumi.checkpoint.ManagementInterfaceArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementInterfaceArgs;
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 ManagementInterface("example", ManagementInterfaceArgs.builder()
.antiSpoofing(true)
.clusterNetworkType("cluster")
.gatewayUid("20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17")
.ignoreWarnings(false)
.ipv4Address("1.1.1.111")
.ipv4MaskLength(24)
.topology("internal")
.build());
final var data = CheckpointFunctions.getManagementInterface(GetManagementInterfaceArgs.builder()
.gatewayUid(example.gatewayUid())
.name(example.name())
.build());
}
}
resources:
example:
type: checkpoint:ManagementInterface
properties:
antiSpoofing: true
clusterNetworkType: cluster
gatewayUid: 20ec49e8-8cd8-4ad4-b204-0de8ae4e0e17
ignoreWarnings: false
ipv4Address: 1.1.1.111
ipv4MaskLength: 24
topology: internal
variables:
data:
fn::invoke:
function: checkpoint:getManagementInterface
arguments:
gatewayUid: ${example.gatewayUid}
name: ${example.name}
Using getManagementInterface
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagementInterface(args: GetManagementInterfaceArgs, opts?: InvokeOptions): Promise<GetManagementInterfaceResult>
function getManagementInterfaceOutput(args: GetManagementInterfaceOutputArgs, opts?: InvokeOptions): Output<GetManagementInterfaceResult>def get_management_interface(color: Optional[str] = None,
comments: Optional[str] = None,
gateway_uid: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementInterfaceResult
def get_management_interface_output(color: Optional[pulumi.Input[str]] = None,
comments: Optional[pulumi.Input[str]] = None,
gateway_uid: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementInterfaceResult]func LookupManagementInterface(ctx *Context, args *LookupManagementInterfaceArgs, opts ...InvokeOption) (*LookupManagementInterfaceResult, error)
func LookupManagementInterfaceOutput(ctx *Context, args *LookupManagementInterfaceOutputArgs, opts ...InvokeOption) LookupManagementInterfaceResultOutput> Note: This function is named LookupManagementInterface in the Go SDK.
public static class GetManagementInterface
{
public static Task<GetManagementInterfaceResult> InvokeAsync(GetManagementInterfaceArgs args, InvokeOptions? opts = null)
public static Output<GetManagementInterfaceResult> Invoke(GetManagementInterfaceInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementInterfaceResult> getManagementInterface(GetManagementInterfaceArgs args, InvokeOptions options)
public static Output<GetManagementInterfaceResult> getManagementInterface(GetManagementInterfaceArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementInterface:getManagementInterface
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementInterface Result
The following output properties are available:
- Anti
Spoofing bool - Anti
Spoofing List<GetSettings Management Interface Anti Spoofing Setting> - Cluster
Members List<GetManagement Interface Cluster Member> - Cluster
Network stringType - Dynamic
Ip bool - Id string
- Ipv4Address string
- Ipv4Mask
Length double - Ipv4Network
Mask string - Ipv6Address string
- Ipv6Mask
Length double - Ipv6Network
Mask string - Monitored
By boolCluster - Network
Interface stringType - Security
Zone List<GetSettings Management Interface Security Zone Setting> - List<string>
- Topology string
- Topology
Automatic string - Topology
Manual string - Topology
Settings List<GetManagement Interface Topology Setting> - Topology
Settings List<GetAutomatics Management Interface Topology Settings Automatic> - Topology
Settings List<GetManuals Management Interface Topology Settings Manual> - Color string
- Comments string
- Gateway
Uid string - Name string
- Uid string
- Anti
Spoofing bool - Anti
Spoofing []GetSettings Management Interface Anti Spoofing Setting - Cluster
Members []GetManagement Interface Cluster Member - Cluster
Network stringType - Dynamic
Ip bool - Id string
- Ipv4Address string
- Ipv4Mask
Length float64 - Ipv4Network
Mask string - Ipv6Address string
- Ipv6Mask
Length float64 - Ipv6Network
Mask string - Monitored
By boolCluster - Network
Interface stringType - Security
Zone []GetSettings Management Interface Security Zone Setting - []string
- Topology string
- Topology
Automatic string - Topology
Manual string - Topology
Settings []GetManagement Interface Topology Setting - Topology
Settings []GetAutomatics Management Interface Topology Settings Automatic - Topology
Settings []GetManuals Management Interface Topology Settings Manual - Color string
- Comments string
- Gateway
Uid string - Name string
- Uid string
- anti
Spoofing Boolean - anti
Spoofing List<GetSettings Management Interface Anti Spoofing Setting> - cluster
Members List<GetManagement Interface Cluster Member> - cluster
Network StringType - dynamic
Ip Boolean - id String
- ipv4Address String
- ipv4Mask
Length Double - ipv4Network
Mask String - ipv6Address String
- ipv6Mask
Length Double - ipv6Network
Mask String - monitored
By BooleanCluster - network
Interface StringType - security
Zone List<GetSettings Management Interface Security Zone Setting> - List<String>
- topology String
- topology
Automatic String - topology
Manual String - topology
Settings List<GetManagement Interface Topology Setting> - topology
Settings List<GetAutomatics Management Interface Topology Settings Automatic> - topology
Settings List<GetManuals Management Interface Topology Settings Manual> - color String
- comments String
- gateway
Uid String - name String
- uid String
- anti
Spoofing boolean - anti
Spoofing GetSettings Management Interface Anti Spoofing Setting[] - cluster
Members GetManagement Interface Cluster Member[] - cluster
Network stringType - dynamic
Ip boolean - id string
- ipv4Address string
- ipv4Mask
Length number - ipv4Network
Mask string - ipv6Address string
- ipv6Mask
Length number - ipv6Network
Mask string - monitored
By booleanCluster - network
Interface stringType - security
Zone GetSettings Management Interface Security Zone Setting[] - string[]
- topology string
- topology
Automatic string - topology
Manual string - topology
Settings GetManagement Interface Topology Setting[] - topology
Settings GetAutomatics Management Interface Topology Settings Automatic[] - topology
Settings GetManuals Management Interface Topology Settings Manual[] - color string
- comments string
- gateway
Uid string - name string
- uid string
- anti_
spoofing bool - anti_
spoofing_ Sequence[Getsettings Management Interface Anti Spoofing Setting] - cluster_
members Sequence[GetManagement Interface Cluster Member] - cluster_
network_ strtype - dynamic_
ip bool - id str
- ipv4_
address str - ipv4_
mask_ floatlength - ipv4_
network_ strmask - ipv6_
address str - ipv6_
mask_ floatlength - ipv6_
network_ strmask - monitored_
by_ boolcluster - network_
interface_ strtype - security_
zone_ Sequence[Getsettings Management Interface Security Zone Setting] - Sequence[str]
- topology str
- topology_
automatic str - topology_
manual str - topology_
settings Sequence[GetManagement Interface Topology Setting] - topology_
settings_ Sequence[Getautomatics Management Interface Topology Settings Automatic] - topology_
settings_ Sequence[Getmanuals Management Interface Topology Settings Manual] - color str
- comments str
- gateway_
uid str - name str
- uid str
- anti
Spoofing Boolean - anti
Spoofing List<Property Map>Settings - cluster
Members List<Property Map> - cluster
Network StringType - dynamic
Ip Boolean - id String
- ipv4Address String
- ipv4Mask
Length Number - ipv4Network
Mask String - ipv6Address String
- ipv6Mask
Length Number - ipv6Network
Mask String - monitored
By BooleanCluster - network
Interface StringType - security
Zone List<Property Map>Settings - List<String>
- topology String
- topology
Automatic String - topology
Manual String - topology
Settings List<Property Map> - topology
Settings List<Property Map>Automatics - topology
Settings List<Property Map>Manuals - color String
- comments String
- gateway
Uid String - name String
- uid String
Supporting Types
GetManagementInterfaceAntiSpoofingSetting
- Action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- Exclude
Packets bool - Don't check packets from excluded network.
- Excluded
Network stringName - Excluded network name.
- Excluded
Network stringUid - Excluded network UID.
- Spoof
Tracking string - Spoof tracking.
- Action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- Exclude
Packets bool - Don't check packets from excluded network.
- Excluded
Network stringName - Excluded network name.
- Excluded
Network stringUid - Excluded network UID.
- Spoof
Tracking string - Spoof tracking.
- action String
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- exclude
Packets Boolean - Don't check packets from excluded network.
- excluded
Network StringName - Excluded network name.
- excluded
Network StringUid - Excluded network UID.
- spoof
Tracking String - Spoof tracking.
- action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- exclude
Packets boolean - Don't check packets from excluded network.
- excluded
Network stringName - Excluded network name.
- excluded
Network stringUid - Excluded network UID.
- spoof
Tracking string - Spoof tracking.
- action str
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- exclude_
packets bool - Don't check packets from excluded network.
- excluded_
network_ strname - Excluded network name.
- excluded_
network_ struid - Excluded network UID.
- spoof_
tracking str - Spoof tracking.
- action String
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- exclude
Packets Boolean - Don't check packets from excluded network.
- excluded
Network StringName - Excluded network name.
- excluded
Network StringUid - Excluded network UID.
- spoof
Tracking String - Spoof tracking.
GetManagementInterfaceClusterMember
- Ipv4Address string
- IPv4 address.
- Ipv4Mask
Length string - IPv4 network mask length.
- Ipv4Network
Mask string - IPv4 network address.
- Ipv6Address string
- IPv6 address.
- Ipv6Mask
Length string - IPv6 network mask length.
- Ipv6Network
Mask string - IPv6 network address.
- Member
Name string - Cluster member object name.
- Member
Uid string - Cluster member object uid.
- Name string
- Cluster member network interface name.
- Network
Mask string - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
- Ipv4Address string
- IPv4 address.
- Ipv4Mask
Length string - IPv4 network mask length.
- Ipv4Network
Mask string - IPv4 network address.
- Ipv6Address string
- IPv6 address.
- Ipv6Mask
Length string - IPv6 network mask length.
- Ipv6Network
Mask string - IPv6 network address.
- Member
Name string - Cluster member object name.
- Member
Uid string - Cluster member object uid.
- Name string
- Cluster member network interface name.
- Network
Mask string - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
- ipv4Address String
- IPv4 address.
- ipv4Mask
Length String - IPv4 network mask length.
- ipv4Network
Mask String - IPv4 network address.
- ipv6Address String
- IPv6 address.
- ipv6Mask
Length String - IPv6 network mask length.
- ipv6Network
Mask String - IPv6 network address.
- member
Name String - Cluster member object name.
- member
Uid String - Cluster member object uid.
- name String
- Cluster member network interface name.
- network
Mask String - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
- ipv4Address string
- IPv4 address.
- ipv4Mask
Length string - IPv4 network mask length.
- ipv4Network
Mask string - IPv4 network address.
- ipv6Address string
- IPv6 address.
- ipv6Mask
Length string - IPv6 network mask length.
- ipv6Network
Mask string - IPv6 network address.
- member
Name string - Cluster member object name.
- member
Uid string - Cluster member object uid.
- name string
- Cluster member network interface name.
- network
Mask string - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
- ipv4_
address str - IPv4 address.
- ipv4_
mask_ strlength - IPv4 network mask length.
- ipv4_
network_ strmask - IPv4 network address.
- ipv6_
address str - IPv6 address.
- ipv6_
mask_ strlength - IPv6 network mask length.
- ipv6_
network_ strmask - IPv6 network address.
- member_
name str - Cluster member object name.
- member_
uid str - Cluster member object uid.
- name str
- Cluster member network interface name.
- network_
mask str - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
- ipv4Address String
- IPv4 address.
- ipv4Mask
Length String - IPv4 network mask length.
- ipv4Network
Mask String - IPv4 network address.
- ipv6Address String
- IPv6 address.
- ipv6Mask
Length String - IPv6 network mask length.
- ipv6Network
Mask String - IPv6 network address.
- member
Name String - Cluster member object name.
- member
Uid String - Cluster member object uid.
- name String
- Cluster member network interface name.
- network
Mask String - IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use ipv4-mask-length and ipv6-mask-length fields explicitly.
GetManagementInterfaceSecurityZoneSetting
- Auto
Calculated bool - Security Zone is calculated according to where the interface leads to.
- Auto
Calculated stringZone - N/A
- Auto
Calculated stringZone Uid - N/A
- Specific
Security boolZone Enabled - N/A
- Specific
Zone string - Security Zone specified manually.
- Specific
Zone stringUid
- Auto
Calculated bool - Security Zone is calculated according to where the interface leads to.
- Auto
Calculated stringZone - N/A
- Auto
Calculated stringZone Uid - N/A
- Specific
Security boolZone Enabled - N/A
- Specific
Zone string - Security Zone specified manually.
- Specific
Zone stringUid
- auto
Calculated Boolean - Security Zone is calculated according to where the interface leads to.
- auto
Calculated StringZone - N/A
- auto
Calculated StringZone Uid - N/A
- specific
Security BooleanZone Enabled - N/A
- specific
Zone String - Security Zone specified manually.
- specific
Zone StringUid
- auto
Calculated boolean - Security Zone is calculated according to where the interface leads to.
- auto
Calculated stringZone - N/A
- auto
Calculated stringZone Uid - N/A
- specific
Security booleanZone Enabled - N/A
- specific
Zone string - Security Zone specified manually.
- specific
Zone stringUid
- auto_
calculated bool - Security Zone is calculated according to where the interface leads to.
- auto_
calculated_ strzone - N/A
- auto_
calculated_ strzone_ uid - N/A
- specific_
security_ boolzone_ enabled - N/A
- specific_
zone str - Security Zone specified manually.
- specific_
zone_ struid
- auto
Calculated Boolean - Security Zone is calculated according to where the interface leads to.
- auto
Calculated StringZone - N/A
- auto
Calculated StringZone Uid - N/A
- specific
Security BooleanZone Enabled - N/A
- specific
Zone String - Security Zone specified manually.
- specific
Zone StringUid
GetManagementInterfaceTopologySetting
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
- interface
Leads booleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address stringBehind This Interface - Network settings behind this interface.
- specific
Network string - Network behind this interface.
- specific
Network stringUid - N/A
- interface_
leads_ boolto_ dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip_
address_ strbehind_ this_ interface - Network settings behind this interface.
- specific_
network str - Network behind this interface.
- specific_
network_ struid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
GetManagementInterfaceTopologySettingsAutomatic
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
- interface
Leads booleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address stringBehind This Interface - Network settings behind this interface.
- specific
Network string - Network behind this interface.
- specific
Network stringUid - N/A
- interface_
leads_ boolto_ dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip_
address_ strbehind_ this_ interface - Network settings behind this interface.
- specific_
network str - Network behind this interface.
- specific_
network_ struid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
GetManagementInterfaceTopologySettingsManual
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Network settings behind this interface.
- Specific
Network string - Network behind this interface.
- Specific
Network stringUid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
- interface
Leads booleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address stringBehind This Interface - Network settings behind this interface.
- specific
Network string - Network behind this interface.
- specific
Network stringUid - N/A
- interface_
leads_ boolto_ dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip_
address_ strbehind_ this_ interface - Network settings behind this interface.
- specific_
network str - Network behind this interface.
- specific_
network_ struid - N/A
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - Network settings behind this interface.
- specific
Network String - Network behind this interface.
- specific
Network StringUid - N/A
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
