Use this data source to get information on an existing Check Point Vpn Community Star.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const vpnCommunityStar = new checkpoint.ManagementVpnCommunityStar("vpn_community_star", {
name: "%s",
encryptionMethod: "ikev1 for ipv4 and ikev2 for ipv6 only",
encryptionSuite: "custom",
});
const dataVpnCommunityStar = checkpoint.getManagementDataVpnCommunityStarOutput({
name: vpnCommunityStar.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
vpn_community_star = checkpoint.ManagementVpnCommunityStar("vpn_community_star",
name="%s",
encryption_method="ikev1 for ipv4 and ikev2 for ipv6 only",
encryption_suite="custom")
data_vpn_community_star = checkpoint.get_management_data_vpn_community_star_output(name=vpn_community_star.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 {
vpnCommunityStar, err := checkpoint.NewManagementVpnCommunityStar(ctx, "vpn_community_star", &checkpoint.ManagementVpnCommunityStarArgs{
Name: pulumi.String("%s"),
EncryptionMethod: pulumi.String("ikev1 for ipv4 and ikev2 for ipv6 only"),
EncryptionSuite: pulumi.String("custom"),
})
if err != nil {
return err
}
_ = checkpoint.GetManagementDataVpnCommunityStarOutput(ctx, checkpoint.GetManagementDataVpnCommunityStarOutputArgs{
Name: vpnCommunityStar.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var vpnCommunityStar = new Checkpoint.ManagementVpnCommunityStar("vpn_community_star", new()
{
Name = "%s",
EncryptionMethod = "ikev1 for ipv4 and ikev2 for ipv6 only",
EncryptionSuite = "custom",
});
var dataVpnCommunityStar = Checkpoint.GetManagementDataVpnCommunityStar.Invoke(new()
{
Name = vpnCommunityStar.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementVpnCommunityStar;
import com.pulumi.checkpoint.ManagementVpnCommunityStarArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataVpnCommunityStarArgs;
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 vpnCommunityStar = new ManagementVpnCommunityStar("vpnCommunityStar", ManagementVpnCommunityStarArgs.builder()
.name("%s")
.encryptionMethod("ikev1 for ipv4 and ikev2 for ipv6 only")
.encryptionSuite("custom")
.build());
final var dataVpnCommunityStar = CheckpointFunctions.getManagementDataVpnCommunityStar(GetManagementDataVpnCommunityStarArgs.builder()
.name(vpnCommunityStar.name())
.build());
}
}
resources:
vpnCommunityStar:
type: checkpoint:ManagementVpnCommunityStar
name: vpn_community_star
properties:
name: '%s'
encryptionMethod: ikev1 for ipv4 and ikev2 for ipv6 only
encryptionSuite: custom
variables:
dataVpnCommunityStar:
fn::invoke:
function: checkpoint:getManagementDataVpnCommunityStar
arguments:
name: ${vpnCommunityStar.name}
Using getManagementDataVpnCommunityStar
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 getManagementDataVpnCommunityStar(args: GetManagementDataVpnCommunityStarArgs, opts?: InvokeOptions): Promise<GetManagementDataVpnCommunityStarResult>
function getManagementDataVpnCommunityStarOutput(args: GetManagementDataVpnCommunityStarOutputArgs, opts?: InvokeOptions): Output<GetManagementDataVpnCommunityStarResult>def get_management_data_vpn_community_star(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataVpnCommunityStarResult
def get_management_data_vpn_community_star_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataVpnCommunityStarResult]func GetManagementDataVpnCommunityStar(ctx *Context, args *GetManagementDataVpnCommunityStarArgs, opts ...InvokeOption) (*GetManagementDataVpnCommunityStarResult, error)
func GetManagementDataVpnCommunityStarOutput(ctx *Context, args *GetManagementDataVpnCommunityStarOutputArgs, opts ...InvokeOption) GetManagementDataVpnCommunityStarResultOutput> Note: This function is named GetManagementDataVpnCommunityStar in the Go SDK.
public static class GetManagementDataVpnCommunityStar
{
public static Task<GetManagementDataVpnCommunityStarResult> InvokeAsync(GetManagementDataVpnCommunityStarArgs args, InvokeOptions? opts = null)
public static Output<GetManagementDataVpnCommunityStarResult> Invoke(GetManagementDataVpnCommunityStarInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementDataVpnCommunityStarResult> getManagementDataVpnCommunityStar(GetManagementDataVpnCommunityStarArgs args, InvokeOptions options)
public static Output<GetManagementDataVpnCommunityStarResult> getManagementDataVpnCommunityStar(GetManagementDataVpnCommunityStarArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataVpnCommunityStar:getManagementDataVpnCommunityStar
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementDataVpnCommunityStar Result
The following output properties are available:
- Advanced
Properties List<GetManagement Data Vpn Community Star Advanced Property> - Center
Gateways List<string> - Color string
- Comments string
- Disable
Nat bool - Disable
Nat stringOn - Encrypted
Traffics List<GetManagement Data Vpn Community Star Encrypted Traffic> - Encryption
Method string - Encryption
Suite string - Excluded
Services List<string> - Granular
Encryptions List<GetManagement Data Vpn Community Star Granular Encryption> - Id string
- Ike
Phase1 Dictionary<string, string> - Ike
Phase2 Dictionary<string, string> - Link
Selection stringMode - Meps
List<Get
Management Data Vpn Community Star Mep> - Mesh
Center boolGateways - Override
Interfaces List<GetManagement Data Vpn Community Star Override Interface> - Override
Vpn List<GetDomains Management Data Vpn Community Star Override Vpn Domain> - Permanent
Tunnels List<GetManagement Data Vpn Community Star Permanent Tunnel> - Routing
Mode string - Satellite
Gateways List<string> -
List<Get
Management Data Vpn Community Star Shared Secret> - List<string>
- Tunnel
Granularity string - bool
- Vpn
Routing string - Wire
Modes List<GetManagement Data Vpn Community Star Wire Mode> - Name string
- Uid string
- Advanced
Properties []GetManagement Data Vpn Community Star Advanced Property - Center
Gateways []string - Color string
- Comments string
- Disable
Nat bool - Disable
Nat stringOn - Encrypted
Traffics []GetManagement Data Vpn Community Star Encrypted Traffic - Encryption
Method string - Encryption
Suite string - Excluded
Services []string - Granular
Encryptions []GetManagement Data Vpn Community Star Granular Encryption - Id string
- Ike
Phase1 map[string]string - Ike
Phase2 map[string]string - Link
Selection stringMode - Meps
[]Get
Management Data Vpn Community Star Mep - Mesh
Center boolGateways - Override
Interfaces []GetManagement Data Vpn Community Star Override Interface - Override
Vpn []GetDomains Management Data Vpn Community Star Override Vpn Domain - Permanent
Tunnels []GetManagement Data Vpn Community Star Permanent Tunnel - Routing
Mode string - Satellite
Gateways []string -
[]Get
Management Data Vpn Community Star Shared Secret - []string
- Tunnel
Granularity string - bool
- Vpn
Routing string - Wire
Modes []GetManagement Data Vpn Community Star Wire Mode - Name string
- Uid string
- advanced
Properties List<GetManagement Data Vpn Community Star Advanced Property> - center
Gateways List<String> - color String
- comments String
- disable
Nat Boolean - disable
Nat StringOn - encrypted
Traffics List<GetManagement Data Vpn Community Star Encrypted Traffic> - encryption
Method String - encryption
Suite String - excluded
Services List<String> - granular
Encryptions List<GetManagement Data Vpn Community Star Granular Encryption> - id String
- ike
Phase1 Map<String,String> - ike
Phase2 Map<String,String> - link
Selection StringMode - meps
List<Get
Management Data Vpn Community Star Mep> - mesh
Center BooleanGateways - override
Interfaces List<GetManagement Data Vpn Community Star Override Interface> - override
Vpn List<GetDomains Management Data Vpn Community Star Override Vpn Domain> - permanent
Tunnels List<GetManagement Data Vpn Community Star Permanent Tunnel> - routing
Mode String - satellite
Gateways List<String> -
List<Get
Management Data Vpn Community Star Shared Secret> - List<String>
- tunnel
Granularity String - Boolean
- vpn
Routing String - wire
Modes List<GetManagement Data Vpn Community Star Wire Mode> - name String
- uid String
- advanced
Properties GetManagement Data Vpn Community Star Advanced Property[] - center
Gateways string[] - color string
- comments string
- disable
Nat boolean - disable
Nat stringOn - encrypted
Traffics GetManagement Data Vpn Community Star Encrypted Traffic[] - encryption
Method string - encryption
Suite string - excluded
Services string[] - granular
Encryptions GetManagement Data Vpn Community Star Granular Encryption[] - id string
- ike
Phase1 {[key: string]: string} - ike
Phase2 {[key: string]: string} - link
Selection stringMode - meps
Get
Management Data Vpn Community Star Mep[] - mesh
Center booleanGateways - override
Interfaces GetManagement Data Vpn Community Star Override Interface[] - override
Vpn GetDomains Management Data Vpn Community Star Override Vpn Domain[] - permanent
Tunnels GetManagement Data Vpn Community Star Permanent Tunnel[] - routing
Mode string - satellite
Gateways string[] -
Get
Management Data Vpn Community Star Shared Secret[] - string[]
- tunnel
Granularity string - boolean
- vpn
Routing string - wire
Modes GetManagement Data Vpn Community Star Wire Mode[] - name string
- uid string
- advanced_
properties Sequence[GetManagement Data Vpn Community Star Advanced Property] - center_
gateways Sequence[str] - color str
- comments str
- disable_
nat bool - disable_
nat_ stron - encrypted_
traffics Sequence[GetManagement Data Vpn Community Star Encrypted Traffic] - encryption_
method str - encryption_
suite str - excluded_
services Sequence[str] - granular_
encryptions Sequence[GetManagement Data Vpn Community Star Granular Encryption] - id str
- ike_
phase1 Mapping[str, str] - ike_
phase2 Mapping[str, str] - link_
selection_ strmode - meps
Sequence[Get
Management Data Vpn Community Star Mep] - mesh_
center_ boolgateways - override_
interfaces Sequence[GetManagement Data Vpn Community Star Override Interface] - override_
vpn_ Sequence[Getdomains Management Data Vpn Community Star Override Vpn Domain] - permanent_
tunnels Sequence[GetManagement Data Vpn Community Star Permanent Tunnel] - routing_
mode str - satellite_
gateways Sequence[str] -
Sequence[Get
Management Data Vpn Community Star Shared Secret] - Sequence[str]
- tunnel_
granularity str - bool
- vpn_
routing str - wire_
modes Sequence[GetManagement Data Vpn Community Star Wire Mode] - name str
- uid str
- advanced
Properties List<Property Map> - center
Gateways List<String> - color String
- comments String
- disable
Nat Boolean - disable
Nat StringOn - encrypted
Traffics List<Property Map> - encryption
Method String - encryption
Suite String - excluded
Services List<String> - granular
Encryptions List<Property Map> - id String
- ike
Phase1 Map<String> - ike
Phase2 Map<String> - link
Selection StringMode - meps List<Property Map>
- mesh
Center BooleanGateways - override
Interfaces List<Property Map> - override
Vpn List<Property Map>Domains - permanent
Tunnels List<Property Map> - routing
Mode String - satellite
Gateways List<String> - List<Property Map>
- List<String>
- tunnel
Granularity String - Boolean
- vpn
Routing String - wire
Modes List<Property Map> - name String
- uid String
Supporting Types
GetManagementDataVpnCommunityStarAdvancedProperty
- 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.
GetManagementDataVpnCommunityStarEncryptedTraffic
- Community
Members string - Indicates on which community members to accept all encrypted traffic.
- Enabled bool
- Indicates whether to accept all encrypted traffic.
- Community
Members string - Indicates on which community members to accept all encrypted traffic.
- Enabled bool
- Indicates whether to accept all encrypted traffic.
- community
Members String - Indicates on which community members to accept all encrypted traffic.
- enabled Boolean
- Indicates whether to accept all encrypted traffic.
- community
Members string - Indicates on which community members to accept all encrypted traffic.
- enabled boolean
- Indicates whether to accept all encrypted traffic.
- community_
members str - Indicates on which community members to accept all encrypted traffic.
- enabled bool
- Indicates whether to accept all encrypted traffic.
- community
Members String - Indicates on which community members to accept all encrypted traffic.
- enabled Boolean
- Indicates whether to accept all encrypted traffic.
GetManagementDataVpnCommunityStarGranularEncryption
- 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
GetManagementDataVpnCommunityStarMep
- Default
Priority List<GetRules Management Data Vpn Community Star Mep Default Priority Rule> - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- Enabled bool
- Enable center gateways as Multiple Entry Points.
- Entry
Point stringFinal Selection Mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- Entry
Point stringSelection Mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- Exception
Priority List<GetRules Management Data Vpn Community Star Mep Exception Priority Rule> - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- Tracking string
- Tracking option for the MEP.
- Default
Priority []GetRules Management Data Vpn Community Star Mep Default Priority Rule - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- Enabled bool
- Enable center gateways as Multiple Entry Points.
- Entry
Point stringFinal Selection Mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- Entry
Point stringSelection Mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- Exception
Priority []GetRules Management Data Vpn Community Star Mep Exception Priority Rule - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- Tracking string
- Tracking option for the MEP.
- default
Priority List<GetRules Management Data Vpn Community Star Mep Default Priority Rule> - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- enabled Boolean
- Enable center gateways as Multiple Entry Points.
- entry
Point StringFinal Selection Mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- entry
Point StringSelection Mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- exception
Priority List<GetRules Management Data Vpn Community Star Mep Exception Priority Rule> - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- tracking String
- Tracking option for the MEP.
- default
Priority GetRules Management Data Vpn Community Star Mep Default Priority Rule[] - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- enabled boolean
- Enable center gateways as Multiple Entry Points.
- entry
Point stringFinal Selection Mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- entry
Point stringSelection Mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- exception
Priority GetRules Management Data Vpn Community Star Mep Exception Priority Rule[] - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- tracking string
- Tracking option for the MEP.
- default_
priority_ Sequence[Getrules Management Data Vpn Community Star Mep Default Priority Rule] - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- enabled bool
- Enable center gateways as Multiple Entry Points.
- entry_
point_ strfinal_ selection_ mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- entry_
point_ strselection_ mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- exception_
priority_ Sequence[Getrules Management Data Vpn Community Star Mep Exception Priority Rule] - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- tracking str
- Tracking option for the MEP.
- default
Priority List<Property Map>Rules - Priority rule for all satellite gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.default_priority_rule blocks are documented below.
- enabled Boolean
- Enable center gateways as Multiple Entry Points.
- entry
Point StringFinal Selection Mechanism - The method by which the final entry point gateway will be chosen when the chosen mechanism returns more than one optional entry point.
- entry
Point StringSelection Mechanism - The method by which the entry point gateway will be chosen from the gateways in the center.
- exception
Priority List<Property Map>Rules - Exception priority rules for specific satellites gateways. Relevant only if 'entry-point-selection-mechanism' is set to 'manual'.exception_priority_rules blocks are documented below.
- tracking String
- Tracking option for the MEP.
GetManagementDataVpnCommunityStarMepDefaultPriorityRule
- First
Priority List<string>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- Second
Priority List<string>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- Third
Priority List<string>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- First
Priority []stringCenter Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- Second
Priority []stringCenter Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- Third
Priority []stringCenter Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority List<String>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- second
Priority List<String>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority List<String>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority string[]Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- second
Priority string[]Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority string[]Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first_
priority_ Sequence[str]center_ gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- second_
priority_ Sequence[str]center_ gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third_
priority_ Sequence[str]center_ gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority List<String>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- second
Priority List<String>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority List<String>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
GetManagementDataVpnCommunityStarMepExceptionPriorityRule
- First
Priority List<string>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- Satellite
Gateways List<string> - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- Second
Priority List<string>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- Third
Priority List<string>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- First
Priority []stringCenter Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- Satellite
Gateways []string - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- Second
Priority []stringCenter Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- Third
Priority []stringCenter Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority List<String>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- satellite
Gateways List<String> - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- second
Priority List<String>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority List<String>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority string[]Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- satellite
Gateways string[] - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- second
Priority string[]Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority string[]Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first_
priority_ Sequence[str]center_ gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- satellite_
gateways Sequence[str] - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- second_
priority_ Sequence[str]center_ gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third_
priority_ Sequence[str]center_ gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
- first
Priority List<String>Center Gateways - Collection of first priority center gateways identified by the name or UID.first_priority_center_gateways blocks are documented below.
- satellite
Gateways List<String> - Collection of satellite gateways to apply priority rules on identified by the name or UID.satellite_gateways blocks are documented below.
- second
Priority List<String>Center Gateways - Collection of second priority center gateways identified by the name or UID.second_priority_center_gateways blocks are documented below.
- third
Priority List<String>Center Gateways - Collection of third priority center gateways identified by the name or UID.third_priority_center_gateways blocks are documented below.
GetManagementDataVpnCommunityStarOverrideInterface
GetManagementDataVpnCommunityStarOverrideInterfaceInterface
- 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
GetManagementDataVpnCommunityStarOverrideVpnDomain
- 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.
GetManagementDataVpnCommunityStarPermanentTunnel
- Gateways
List<Get
Management Data Vpn Community Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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 Star 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.
GetManagementDataVpnCommunityStarPermanentTunnelGateway
- 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.
GetManagementDataVpnCommunityStarPermanentTunnelRim
- Enable
On boolCenter Gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- Enable
On boolSatellite Gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- Enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- Route
Injection stringTrack - Route injection track method.
- Enable
On boolCenter Gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- Enable
On boolSatellite Gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- Enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- Route
Injection stringTrack - Route injection track method.
- enable
On BooleanCenter Gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- enable
On BooleanSatellite Gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- enabled Boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection StringTrack - Route injection track method.
- enable
On booleanCenter Gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- enable
On booleanSatellite Gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- enabled boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection stringTrack - Route injection track method.
- enable_
on_ boolcenter_ gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- enable_
on_ boolsatellite_ gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- enabled bool
- Indicates whether Route Injection Mechanism is enabled.
- route_
injection_ strtrack - Route injection track method.
- enable
On BooleanCenter Gateways - Indicates whether to enable automatic Route Injection Mechanism on center gateways.
- enable
On BooleanSatellite Gateways - Indicates whether to enable automatic Route Injection Mechanism on satellite gateways.
- enabled Boolean
- Indicates whether Route Injection Mechanism is enabled.
- route
Injection StringTrack - Route injection track method.
GetManagementDataVpnCommunityStarPermanentTunnelTunnel
- 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.
GetManagementDataVpnCommunityStarSharedSecret
- 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.
GetManagementDataVpnCommunityStarWireMode
- 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.
