checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Vpn Community Meshed.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const vpnCommunityMeshed = new checkpoint.ManagementVpnCommunityMeshed("vpn_community_meshed", {
name: "vpn community meshed",
encryptionMethod: "ikev1 for ipv4 and ikev2 for ipv6 only",
encryptionSuite: "custom",
});
const dataVpnCommunityMeshed = checkpoint.getManagementDataVpnCommunityMeshedOutput({
name: vpnCommunityMeshed.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
vpn_community_meshed = checkpoint.ManagementVpnCommunityMeshed("vpn_community_meshed",
name="vpn community meshed",
encryption_method="ikev1 for ipv4 and ikev2 for ipv6 only",
encryption_suite="custom")
data_vpn_community_meshed = checkpoint.get_management_data_vpn_community_meshed_output(name=vpn_community_meshed.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 {
vpnCommunityMeshed, err := checkpoint.NewManagementVpnCommunityMeshed(ctx, "vpn_community_meshed", &checkpoint.ManagementVpnCommunityMeshedArgs{
Name: pulumi.String("vpn community meshed"),
EncryptionMethod: pulumi.String("ikev1 for ipv4 and ikev2 for ipv6 only"),
EncryptionSuite: pulumi.String("custom"),
})
if err != nil {
return err
}
_ = checkpoint.GetManagementDataVpnCommunityMeshedOutput(ctx, checkpoint.GetManagementDataVpnCommunityMeshedOutputArgs{
Name: vpnCommunityMeshed.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var vpnCommunityMeshed = new Checkpoint.ManagementVpnCommunityMeshed("vpn_community_meshed", new()
{
Name = "vpn community meshed",
EncryptionMethod = "ikev1 for ipv4 and ikev2 for ipv6 only",
EncryptionSuite = "custom",
});
var dataVpnCommunityMeshed = Checkpoint.GetManagementDataVpnCommunityMeshed.Invoke(new()
{
Name = vpnCommunityMeshed.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementVpnCommunityMeshed;
import com.pulumi.checkpoint.ManagementVpnCommunityMeshedArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataVpnCommunityMeshedArgs;
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 vpnCommunityMeshed = new ManagementVpnCommunityMeshed("vpnCommunityMeshed", ManagementVpnCommunityMeshedArgs.builder()
.name("vpn community meshed")
.encryptionMethod("ikev1 for ipv4 and ikev2 for ipv6 only")
.encryptionSuite("custom")
.build());
final var dataVpnCommunityMeshed = CheckpointFunctions.getManagementDataVpnCommunityMeshed(GetManagementDataVpnCommunityMeshedArgs.builder()
.name(vpnCommunityMeshed.name())
.build());
}
}
resources:
vpnCommunityMeshed:
type: checkpoint:ManagementVpnCommunityMeshed
name: vpn_community_meshed
properties:
name: vpn community meshed
encryptionMethod: ikev1 for ipv4 and ikev2 for ipv6 only
encryptionSuite: custom
variables:
dataVpnCommunityMeshed:
fn::invoke:
function: checkpoint:getManagementDataVpnCommunityMeshed
arguments:
name: ${vpnCommunityMeshed.name}
Using getManagementDataVpnCommunityMeshed
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 getManagementDataVpnCommunityMeshed(args: GetManagementDataVpnCommunityMeshedArgs, opts?: InvokeOptions): Promise<GetManagementDataVpnCommunityMeshedResult>
function getManagementDataVpnCommunityMeshedOutput(args: GetManagementDataVpnCommunityMeshedOutputArgs, opts?: InvokeOptions): Output<GetManagementDataVpnCommunityMeshedResult>def get_management_data_vpn_community_meshed(excluded_services: Optional[Sequence[str]] = None,
id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataVpnCommunityMeshedResult
def get_management_data_vpn_community_meshed_output(excluded_services: Optional[pulumi.Input[Sequence[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[GetManagementDataVpnCommunityMeshedResult]func GetManagementDataVpnCommunityMeshed(ctx *Context, args *GetManagementDataVpnCommunityMeshedArgs, opts ...InvokeOption) (*GetManagementDataVpnCommunityMeshedResult, error)
func GetManagementDataVpnCommunityMeshedOutput(ctx *Context, args *GetManagementDataVpnCommunityMeshedOutputArgs, opts ...InvokeOption) GetManagementDataVpnCommunityMeshedResultOutput> Note: This function is named GetManagementDataVpnCommunityMeshed in the Go SDK.
public static class GetManagementDataVpnCommunityMeshed
{
public static Task<GetManagementDataVpnCommunityMeshedResult> InvokeAsync(GetManagementDataVpnCommunityMeshedArgs args, InvokeOptions? opts = null)
public static Output<GetManagementDataVpnCommunityMeshedResult> Invoke(GetManagementDataVpnCommunityMeshedInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementDataVpnCommunityMeshedResult> getManagementDataVpnCommunityMeshed(GetManagementDataVpnCommunityMeshedArgs args, InvokeOptions options)
public static Output<GetManagementDataVpnCommunityMeshedResult> getManagementDataVpnCommunityMeshed(GetManagementDataVpnCommunityMeshedArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataVpnCommunityMeshed:getManagementDataVpnCommunityMeshed
arguments:
# arguments dictionaryThe following arguments are supported:
- Excluded
Services List<string> - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- Id string
- Name string
- Object name.
- Uid string
- Object unique identifier.
- Excluded
Services []string - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- Id string
- Name string
- Object name.
- Uid string
- Object unique identifier.
- excluded
Services List<String> - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- id String
- name String
- Object name.
- uid String
- Object unique identifier.
- excluded
Services string[] - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- id string
- name string
- Object name.
- uid string
- Object unique identifier.
- excluded_
services Sequence[str] - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- id str
- name str
- Object name.
- uid str
- Object unique identifier.
- excluded
Services List<String> - Collection of services that are excluded from the community identified by the name or UID. Connections with these services will not be encrypted and will not match rules specifying the community in the VPN community.excluded_services blocks are documented below.
- id String
- name String
- Object name.
- uid String
- Object unique identifier.
getManagementDataVpnCommunityMeshed Result
The following output properties are available:
- Advanced
Properties List<GetManagement Data Vpn Community Meshed Advanced Property> - Color string
- Comments string
- Disable
Nat bool - Encrypted
Traffics List<GetManagement Data Vpn Community Meshed Encrypted Traffic> - Encryption
Method string - Encryption
Suite string - Gateways List<string>
- Granular
Encryptions List<GetManagement Data Vpn Community Meshed Granular Encryption> - Id string
- Ike
Phase1 Dictionary<string, string> - Ike
Phase2 Dictionary<string, string> - Link
Selection stringMode - Override
Interfaces List<GetManagement Data Vpn Community Meshed Override Interface> - Override
Vpn List<GetDomains Management Data Vpn Community Meshed Override Vpn Domain> - Permanent
Tunnels List<GetManagement Data Vpn Community Meshed Permanent Tunnel> - Routing
Mode string -
List<Get
Management Data Vpn Community Meshed Shared Secret> - List<string>
- Tunnel
Granularity string - bool
- Wire
Modes List<GetManagement Data Vpn Community Meshed Wire Mode> - Excluded
Services List<string> - Name string
- Uid string
- Advanced
Properties []GetManagement Data Vpn Community Meshed Advanced Property - Color string
- Comments string
- Disable
Nat bool - Encrypted
Traffics []GetManagement Data Vpn Community Meshed Encrypted Traffic - Encryption
Method string - Encryption
Suite string - Gateways []string
- Granular
Encryptions []GetManagement Data Vpn Community Meshed Granular Encryption - Id string
- Ike
Phase1 map[string]string - Ike
Phase2 map[string]string - Link
Selection stringMode - Override
Interfaces []GetManagement Data Vpn Community Meshed Override Interface - Override
Vpn []GetDomains Management Data Vpn Community Meshed Override Vpn Domain - Permanent
Tunnels []GetManagement Data Vpn Community Meshed Permanent Tunnel - Routing
Mode string -
[]Get
Management Data Vpn Community Meshed Shared Secret - []string
- Tunnel
Granularity string - bool
- Wire
Modes []GetManagement Data Vpn Community Meshed Wire Mode - Excluded
Services []string - Name string
- Uid string
- advanced
Properties List<GetManagement Data Vpn Community Meshed Advanced Property> - color String
- comments String
- disable
Nat Boolean - encrypted
Traffics List<GetManagement Data Vpn Community Meshed Encrypted Traffic> - encryption
Method String - encryption
Suite String - gateways List<String>
- granular
Encryptions List<GetManagement Data Vpn Community Meshed Granular Encryption> - id String
- ike
Phase1 Map<String,String> - ike
Phase2 Map<String,String> - link
Selection StringMode - override
Interfaces List<GetManagement Data Vpn Community Meshed Override Interface> - override
Vpn List<GetDomains Management Data Vpn Community Meshed Override Vpn Domain> - permanent
Tunnels List<GetManagement Data Vpn Community Meshed Permanent Tunnel> - routing
Mode String -
List<Get
Management Data Vpn Community Meshed Shared Secret> - List<String>
- tunnel
Granularity String - Boolean
- wire
Modes List<GetManagement Data Vpn Community Meshed Wire Mode> - excluded
Services List<String> - name String
- uid String
- advanced
Properties GetManagement Data Vpn Community Meshed Advanced Property[] - color string
- comments string
- disable
Nat boolean - encrypted
Traffics GetManagement Data Vpn Community Meshed Encrypted Traffic[] - encryption
Method string - encryption
Suite string - gateways string[]
- granular
Encryptions GetManagement Data Vpn Community Meshed Granular Encryption[] - id string
- ike
Phase1 {[key: string]: string} - ike
Phase2 {[key: string]: string} - link
Selection stringMode - override
Interfaces GetManagement Data Vpn Community Meshed Override Interface[] - override
Vpn GetDomains Management Data Vpn Community Meshed Override Vpn Domain[] - permanent
Tunnels GetManagement Data Vpn Community Meshed Permanent Tunnel[] - routing
Mode string -
Get
Management Data Vpn Community Meshed Shared Secret[] - string[]
- tunnel
Granularity string - boolean
- wire
Modes GetManagement Data Vpn Community Meshed Wire Mode[] - excluded
Services string[] - name string
- uid string
- advanced_
properties Sequence[GetManagement Data Vpn Community Meshed Advanced Property] - color str
- comments str
- disable_
nat bool - encrypted_
traffics Sequence[GetManagement Data Vpn Community Meshed Encrypted Traffic] - encryption_
method str - encryption_
suite str - gateways Sequence[str]
- granular_
encryptions Sequence[GetManagement Data Vpn Community Meshed Granular Encryption] - id str
- ike_
phase1 Mapping[str, str] - ike_
phase2 Mapping[str, str] - link_
selection_ strmode - override_
interfaces Sequence[GetManagement Data Vpn Community Meshed Override Interface] - override_
vpn_ Sequence[Getdomains Management Data Vpn Community Meshed Override Vpn Domain] - permanent_
tunnels Sequence[GetManagement Data Vpn Community Meshed Permanent Tunnel] - routing_
mode str -
Sequence[Get
Management Data Vpn Community Meshed Shared Secret] - Sequence[str]
- tunnel_
granularity str - bool
- wire_
modes Sequence[GetManagement Data Vpn Community Meshed Wire Mode] - excluded_
services Sequence[str] - name str
- uid str
- advanced
Properties List<Property Map> - color String
- comments String
- disable
Nat Boolean - encrypted
Traffics List<Property Map> - encryption
Method String - encryption
Suite String - gateways List<String>
- granular
Encryptions List<Property Map> - id String
- ike
Phase1 Map<String> - ike
Phase2 Map<String> - link
Selection StringMode - override
Interfaces List<Property Map> - override
Vpn List<Property Map>Domains - permanent
Tunnels List<Property Map> - routing
Mode String - List<Property Map>
- List<String>
- tunnel
Granularity String - Boolean
- wire
Modes List<Property Map> - excluded
Services List<String> - name String
- uid String
Supporting Types
GetManagementDataVpnCommunityMeshedAdvancedProperty
- Support
Ip boolCompression - Indicates whether to support IP compression.
- Use
Aggressive boolMode - Indicates whether to use aggressive mode.
- Support
Ip boolCompression - Indicates whether to support IP compression.
- Use
Aggressive boolMode - Indicates whether to use aggressive mode.
- support
Ip BooleanCompression - Indicates whether to support IP compression.
- use
Aggressive BooleanMode - Indicates whether to use aggressive mode.
- support
Ip booleanCompression - Indicates whether to support IP compression.
- use
Aggressive booleanMode - Indicates whether to use aggressive mode.
- support_
ip_ boolcompression - Indicates whether to support IP compression.
- use_
aggressive_ boolmode - Indicates whether to use aggressive mode.
- support
Ip BooleanCompression - Indicates whether to support IP compression.
- use
Aggressive BooleanMode - Indicates whether to use aggressive mode.
GetManagementDataVpnCommunityMeshedEncryptedTraffic
- Enabled bool
- Indicates whether to accept all encrypted traffic.
- Enabled bool
- Indicates whether to accept all encrypted traffic.
- enabled Boolean
- Indicates whether to accept all encrypted traffic.
- enabled boolean
- Indicates whether to accept all encrypted traffic.
- enabled bool
- Indicates whether to accept all encrypted traffic.
- enabled Boolean
- Indicates whether to accept all encrypted traffic.
GetManagementDataVpnCommunityMeshedGranularEncryption
- Encryption
Method string - The encryption method to be used.
- Encryption
Suite string - The encryption suite to be used.
- External
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- Ike
Phase1 Dictionary<string, string> - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- Ike
Phase2 Dictionary<string, string> - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- Internal
Gateway string
- Encryption
Method string - The encryption method to be used.
- Encryption
Suite string - The encryption suite to be used.
- External
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- Ike
Phase1 map[string]string - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- Ike
Phase2 map[string]string - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- Internal
Gateway string
- encryption
Method String - The encryption method to be used.
- encryption
Suite String - The encryption suite to be used.
- external
Gateway String - Externally managed or 3rd party gateway identified by name or UID.
- ike
Phase1 Map<String,String> - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- ike
Phase2 Map<String,String> - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- internal
Gateway String
- encryption
Method string - The encryption method to be used.
- encryption
Suite string - The encryption suite to be used.
- external
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- ike
Phase1 {[key: string]: string} - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- ike
Phase2 {[key: string]: string} - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- internal
Gateway string
- encryption_
method str - The encryption method to be used.
- encryption_
suite str - The encryption suite to be used.
- external_
gateway str - Externally managed or 3rd party gateway identified by name or UID.
- ike_
phase1 Mapping[str, str] - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- ike_
phase2 Mapping[str, str] - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- internal_
gateway str
- encryption
Method String - The encryption method to be used.
- encryption
Suite String - The encryption suite to be used.
- external
Gateway String - Externally managed or 3rd party gateway identified by name or UID.
- ike
Phase1 Map<String> - Ike Phase 1 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_1 blocks are documented below.
- ike
Phase2 Map<String> - Ike Phase 2 settings. Only applicable when the encryption-suite is set to [custom]. ike_phase_2 blocks are documented below.
- internal
Gateway String
GetManagementDataVpnCommunityMeshedOverrideInterface
GetManagementDataVpnCommunityMeshedOverrideInterfaceInterface
- Interface
Name string - Next
Hop stringIp - Priority double
- Redundancy
Mode string - Static
Nat stringIp
- Interface
Name string - Next
Hop stringIp - Priority float64
- Redundancy
Mode string - Static
Nat stringIp
- interface
Name String - next
Hop StringIp - priority Double
- redundancy
Mode String - static
Nat StringIp
- interface
Name string - next
Hop stringIp - priority number
- redundancy
Mode string - static
Nat stringIp
- interface_
name str - next_
hop_ strip - priority float
- redundancy_
mode str - static_
nat_ strip
- interface
Name String - next
Hop StringIp - priority Number
- redundancy
Mode String - static
Nat StringIp
GetManagementDataVpnCommunityMeshedOverrideVpnDomain
- gateway str
- Participant gateway in override VPN domain identified by the name or UID.
- vpn_
domain str - VPN domain network identified by the name or UID.
GetManagementDataVpnCommunityMeshedPermanentTunnel
- Gateways
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Gateway> - List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- Rims
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Rim> - Route Injection Mechanism settings.rim blocks are documented below.
- Set
Permanent stringTunnels - Indicates which tunnels to set as permanent.
- Tunnel
Down stringTrack - VPN community permanent tunnels down track option.
- Tunnel
Up stringTrack - Permanent tunnels up track option.
- Tunnels
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Tunnel> - List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
- Gateways
[]Get
Management Data Vpn Community Meshed Permanent Tunnel Gateway - List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- Rims
[]Get
Management Data Vpn Community Meshed Permanent Tunnel Rim - Route Injection Mechanism settings.rim blocks are documented below.
- Set
Permanent stringTunnels - Indicates which tunnels to set as permanent.
- Tunnel
Down stringTrack - VPN community permanent tunnels down track option.
- Tunnel
Up stringTrack - Permanent tunnels up track option.
- Tunnels
[]Get
Management Data Vpn Community Meshed Permanent Tunnel Tunnel - List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
- gateways
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Gateway> - List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- rims
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Rim> - Route Injection Mechanism settings.rim blocks are documented below.
- set
Permanent StringTunnels - Indicates which tunnels to set as permanent.
- tunnel
Down StringTrack - VPN community permanent tunnels down track option.
- tunnel
Up StringTrack - Permanent tunnels up track option.
- tunnels
List<Get
Management Data Vpn Community Meshed Permanent Tunnel Tunnel> - List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
- gateways
Get
Management Data Vpn Community Meshed Permanent Tunnel Gateway[] - List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- rims
Get
Management Data Vpn Community Meshed Permanent Tunnel Rim[] - Route Injection Mechanism settings.rim blocks are documented below.
- set
Permanent stringTunnels - Indicates which tunnels to set as permanent.
- tunnel
Down stringTrack - VPN community permanent tunnels down track option.
- tunnel
Up stringTrack - Permanent tunnels up track option.
- tunnels
Get
Management Data Vpn Community Meshed Permanent Tunnel Tunnel[] - List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
- gateways
Sequence[Get
Management Data Vpn Community Meshed Permanent Tunnel Gateway] - List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- rims
Sequence[Get
Management Data Vpn Community Meshed Permanent Tunnel Rim] - Route Injection Mechanism settings.rim blocks are documented below.
- set_
permanent_ strtunnels - Indicates which tunnels to set as permanent.
- tunnel_
down_ strtrack - VPN community permanent tunnels down track option.
- tunnel_
up_ strtrack - Permanent tunnels up track option.
- tunnels
Sequence[Get
Management Data Vpn Community Meshed Permanent Tunnel Tunnel] - List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
- gateways List<Property Map>
- List of gateways to set all their tunnels to permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to all-tunnels-of-specific-gateways.gateways blocks are documented below.
- rims List<Property Map>
- Route Injection Mechanism settings.rim blocks are documented below.
- set
Permanent StringTunnels - Indicates which tunnels to set as permanent.
- tunnel
Down StringTrack - VPN community permanent tunnels down track option.
- tunnel
Up StringTrack - Permanent tunnels up track option.
- tunnels List<Property Map>
- List of tunnels to set as permanent with specified track options. Will take effect only if set-permanent-tunnels-on is set to specific-tunnels-in-the-community.tunnels blocks are documented below.
GetManagementDataVpnCommunityMeshedPermanentTunnelGateway
- Gateway string
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- Override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- Override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- Track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- Gateway string
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- Override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- Override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- Track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- gateway String
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- override
Tunnel StringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel StringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- track
Options String - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- gateway string
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- gateway str
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- override_
tunnel_ strdown_ track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override_
tunnel_ strup_ track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- track_
options str - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- gateway String
- Gateway to set all is tunnels to permanent with specified track options. Identified by name or UID.
- override
Tunnel StringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel StringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- track
Options String - Indicates whether to use the community track options or to override track options for the permanent tunnels.
GetManagementDataVpnCommunityMeshedPermanentTunnelRim
- Enable
On boolGateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- Enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- Route
Injection stringTrack - Route injection track method.
- Enable
On boolGateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- Enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- Route
Injection stringTrack - Route injection track method.
- enable
On BooleanGateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- enabled Boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection StringTrack - Route injection track method.
- enable
On booleanGateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- enabled boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection stringTrack - Route injection track method.
- enable_
on_ boolgateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- route_
injection_ strtrack - Route injection track method.
- enable
On BooleanGateways - Indicates whether to enable automatic Route Injection Mechanism for gateways.
- enabled Boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection StringTrack - Route injection track method.
GetManagementDataVpnCommunityMeshedPermanentTunnelTunnel
- First
Tunnel stringEndpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- Override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- Override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- Second
Tunnel stringEndpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- Track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- First
Tunnel stringEndpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- Override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- Override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- Second
Tunnel stringEndpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- Track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- first
Tunnel StringEndpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- override
Tunnel StringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel StringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- second
Tunnel StringEndpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- track
Options String - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- first
Tunnel stringEndpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- override
Tunnel stringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel stringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- second
Tunnel stringEndpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- track
Options string - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- first_
tunnel_ strendpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- override_
tunnel_ strdown_ track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override_
tunnel_ strup_ track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- second_
tunnel_ strendpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- track_
options str - Indicates whether to use the community track options or to override track options for the permanent tunnels.
- first
Tunnel StringEndpoint - First tunnel endpoint (center gateway). Identified by name or UID.
- override
Tunnel StringDown Track - Gateway tunnel down track option. Relevant only if the track-options is set to 'override track options'.
- override
Tunnel StringUp Track - Gateway tunnel up track option. Relevant only if the track-options is set to 'override track options'.
- second
Tunnel StringEndpoint - Second tunnel endpoint (center gateway for meshed VPN community and satellitegateway for star VPN community). Identified by name or UID.
- track
Options String - Indicates whether to use the community track options or to override track options for the permanent tunnels.
GetManagementDataVpnCommunityMeshedSharedSecret
- External
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- string
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
- External
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- string
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
- external
Gateway String - Externally managed or 3rd party gateway identified by name or UID.
- String
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
- external
Gateway string - Externally managed or 3rd party gateway identified by name or UID.
- string
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
- external_
gateway str - Externally managed or 3rd party gateway identified by name or UID.
- str
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
- external
Gateway String - Externally managed or 3rd party gateway identified by name or UID.
- String
- Shared secret.
granular_encryptions` supports the following:
internal-gateway- Internally managed Check Point gateway identified by name or UID, or 'Any' for all internal-gateways participants in this community.
GetManagementDataVpnCommunityMeshedWireMode
- Allow
Uninspected boolEncrypted Routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- Allow
Uninspected boolEncrypted Traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
- Allow
Uninspected boolEncrypted Routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- Allow
Uninspected boolEncrypted Traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
- allow
Uninspected BooleanEncrypted Routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- allow
Uninspected BooleanEncrypted Traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
- allow
Uninspected booleanEncrypted Routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- allow
Uninspected booleanEncrypted Traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
- allow_
uninspected_ boolencrypted_ routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- allow_
uninspected_ boolencrypted_ traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
- allow
Uninspected BooleanEncrypted Routing - Allow members to route uninspected encrypted traffic in VPN routing configurations.
- allow
Uninspected BooleanEncrypted Traffic - Allow uninspected encrypted traffic between Wire mode interfaces of this Community members.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
checkpoint 2.12.0 published on Monday, Nov 10, 2025 by checkpointsw
