├── .github └── workflows │ └── code-analysis.yaml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── aws ├── images │ ├── launch.png │ ├── step1_aws.png │ └── step2_aws.png └── templates │ ├── README.md │ ├── asg │ ├── README.md │ ├── autoscale-master.yaml │ └── autoscale.yaml │ ├── cluster │ ├── README.md │ ├── cluster-master.yaml │ └── cluster.yaml │ ├── cross-az-cluster │ ├── README.md │ ├── cross-az-cluster-master.yaml │ └── cross-az-cluster.yaml │ ├── general │ ├── README.md │ ├── amis.yaml │ └── cme-iam-role.yaml │ ├── geo-cluster │ ├── README.md │ ├── geo-cluster-master.yaml │ └── geo-cluster.yaml │ ├── gwlb-asg │ ├── README.md │ ├── gwlb-master.yaml │ ├── gwlb.yaml │ ├── qs-gwlb-master.yaml │ ├── qs-gwlb.yaml │ ├── tgw-gwlb-master.yaml │ └── tgw-gwlb.yaml │ ├── management │ ├── README.md │ ├── management-master.yaml │ └── management.yaml │ ├── mds │ ├── README.md │ ├── mds-master.yaml │ └── mds.yaml │ ├── single-gw │ ├── README.md │ ├── gateway-master.yaml │ └── gateway.yaml │ ├── standalone │ ├── README.md │ ├── standalone-master.yaml │ └── standalone.yaml │ ├── tgw-asg │ ├── README.md │ ├── tgw-asg-master.yaml │ └── tgw-asg.yaml │ ├── tgw-cross-az-cluster │ ├── README.md │ ├── tgw-cross-az-cluster-master.yaml │ └── tgw-cross-az-cluster.yaml │ └── tgw-ha │ ├── README.md │ ├── tgw-ha-master.yaml │ └── tgw-ha.yaml ├── azure ├── misc │ ├── azure_ha_test.py │ └── nva_bgp_config.conf └── templates │ ├── README.MD │ ├── marketplace-gateway-load-balancer │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-ha │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-management │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-mds │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-single-waap │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-single │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-stack-ha │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-stack-management │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-stack-single │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-vmss-waap │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── marketplace-vmss │ ├── README.md │ ├── createUiDefinition.json │ └── mainTemplate.json │ ├── nestedtemplates │ ├── CreateUIDefinition.MultiVm.json │ ├── azure-func-sami.json │ ├── existing-nsg-RoleAssignment.json │ ├── gateway-load-balancers.json │ ├── load-balancers-waap.json │ ├── load-balancers.json │ ├── storageAccount-existing.json │ ├── storageAccount-new.json │ ├── vnet-1-subnet-existing.json │ ├── vnet-1-subnet-new.json │ ├── vnet-2-subnet-ha-existing.json │ ├── vnet-2-subnet-ha-new.json │ ├── vnet-2-subnet-ha2-existing.json │ ├── vnet-2-subnet-ha2-new.json │ ├── vnet-4-subnet-existing.json │ ├── vnet-4-subnet-new.json │ ├── vnet-existing-no-rt.json │ ├── vnet-existing-stack-ha.json │ ├── vnet-existing-stack-mgmt.json │ ├── vnet-existing-stack.json │ ├── vnet-existing.json │ ├── vnet-new-no-rt.json │ ├── vnet-new-stack-ha.json │ ├── vnet-new-stack-mgmt.json │ ├── vnet-new-stack.json │ ├── vnet-new.json │ ├── vwan-public-ip-join-permission-assignment.json │ └── vwan-reader-role-assignment.json │ ├── single-ipv6 │ ├── README.md │ └── mainTemplate.json │ ├── vmss-ipv6 │ ├── README.md │ └── mainTemplate.json │ └── vwan-managed-app │ ├── README.md │ └── mainTemplate.json ├── cloudguard-network-application ├── README.md ├── azure │ ├── README.md │ └── cgns_onboarding.sh ├── cgns_onboarding_azure.sh └── gcp │ ├── README.md │ └── cgns_onboarding.sh ├── common ├── central_license_debug_collector.sh ├── cme_api_postman │ ├── CME_API.postman_collection │ └── README.md ├── cme_xff_inject.sh ├── custom-management-script.py ├── custom_scripts │ ├── README.md │ └── password_script.sh ├── maintenance_mode │ ├── README.md │ └── grub.conf ├── simulate_cpu_load.sh ├── static_route_config.sh └── vwan_postman │ ├── README.md │ └── vwan.postman_collection.json ├── contrib ├── README.md ├── azure │ └── templates │ │ ├── ha-public-ip-prefix │ │ ├── README.MD │ │ ├── ha-publicipprefix-parameters.json │ │ └── ha-publicipprefix.json │ │ ├── ha-redeploy-single-member │ │ ├── README.MD │ │ ├── ha-redeploy-single-member.json │ │ └── mainTemplate.json │ │ ├── vmss-publicipprefixinstances │ │ ├── README.MD │ │ └── vmss-publicipprefix-instances.json │ │ └── vmss-publicipprefixinstanceselb │ │ ├── README.MD │ │ ├── mainTemplate.json │ │ └── nestedtemplates │ │ ├── load-balancers.json │ │ └── vnet-2-subnet-ha-existing.json ├── cme │ └── examples │ │ └── README.md ├── terraform-azure-gwlb │ ├── README.md │ ├── app-main.tf │ ├── app-variables.tf │ ├── cpcluster-main.tf │ ├── cpcluster-variables.tf │ ├── cpmgmt-main.tf │ ├── cpmgmt-variables.tf │ ├── customdata.sh │ ├── deployment-variables.tf │ ├── files │ │ └── azure-gwlb-template.json │ ├── gwlb-main.tf │ ├── gwlb-variables.tf │ ├── modules │ │ ├── common │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── network-security-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── vnet │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── net-main.tf │ ├── net-variables.tf │ ├── terraform.tfvars │ ├── tfc-project.tf │ └── zimages │ │ └── azure-gwlb-design.jpg └── terraform │ └── azure │ └── vmss-new-vnet-with-peer │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── images │ └── Topology-2.JPG │ ├── main.tf │ ├── terraform.tfvars │ └── variables.tf ├── deprecated ├── README.md ├── aws │ └── templates │ │ ├── R77.30 │ │ ├── gateway-r7730 │ │ │ ├── README.md │ │ │ └── gateway-2-nic-existing-vpc.json │ │ ├── gateways-r7730 │ │ │ ├── README.md │ │ │ └── inter-az-cluster.json │ │ ├── instance-r7730 │ │ │ ├── README.md │ │ │ └── gwinvpc.json │ │ └── management-r7730 │ │ │ ├── README.md │ │ │ └── r7730-management.json │ │ ├── R80.30 │ │ ├── asg-r8030 │ │ │ ├── README.md │ │ │ └── autoscale.json │ │ ├── cluster-r8030 │ │ │ ├── README.md │ │ │ ├── cluster-into-vpc.json │ │ │ └── cluster.json │ │ ├── management-r8030 │ │ │ ├── README.md │ │ │ └── management.json │ │ ├── mds-r8030 │ │ │ ├── README.md │ │ │ └── mds.json │ │ ├── single-gw-r8030 │ │ │ ├── README.md │ │ │ ├── gateway-into-vpc.json │ │ │ └── gateway.json │ │ ├── tgw-asg-r8030 │ │ │ ├── README.md │ │ │ ├── checkpoint-tgw-asg-master.yaml │ │ │ └── checkpoint-tgw-asg.yaml │ │ └── transit-vpc-r8030 │ │ │ ├── README.md │ │ │ ├── checkpoint-transit-master.yaml │ │ │ ├── checkpoint-transit.yaml │ │ │ ├── transit-master.yaml │ │ │ └── transit.yaml │ │ ├── R80.40 │ │ ├── autoscale │ │ │ ├── autoscale.yaml │ │ │ ├── custom-autoscale.yaml │ │ │ ├── tgw-asg-master.yaml │ │ │ └── tgw-asg.yaml │ │ ├── cluster │ │ │ ├── cluster-master.yaml │ │ │ ├── cluster.yaml │ │ │ ├── geo-cluster-master.yaml │ │ │ ├── geo-cluster.yaml │ │ │ ├── tgw-ha-master.yaml │ │ │ └── tgw-ha.yaml │ │ ├── gateway │ │ │ ├── gateway-master.yaml │ │ │ ├── gateway.yaml │ │ │ ├── standalone-master.yaml │ │ │ └── standalone.yaml │ │ ├── gwlb │ │ │ ├── amis-gwlb.yaml │ │ │ ├── autoscale-gwlb.yaml │ │ │ ├── cme-iam-role-gwlb.yaml │ │ │ ├── gwlb-master.yaml │ │ │ ├── gwlb-servers-infrastructure.yaml │ │ │ ├── gwlb-wan-global-network-master.yaml │ │ │ ├── gwlb-wan-global-network.yaml │ │ │ ├── gwlb-wan-security-vpc-master.yaml │ │ │ ├── gwlb-wan-security-vpc.yaml │ │ │ ├── gwlb.yaml │ │ │ ├── management-gwlb.yaml │ │ │ ├── tgw-gwlb-master.yaml │ │ │ └── tgw-gwlb.yaml │ │ ├── iam │ │ │ ├── cloudwatch-policy.yaml │ │ │ ├── cluster-iam-role.yaml │ │ │ ├── cme-iam-role.yaml │ │ │ └── sts-role.yaml │ │ ├── management │ │ │ ├── management.yaml │ │ │ └── mds.yaml │ │ └── utils │ │ │ ├── copy-lambda-zip.yaml │ │ │ ├── tap-target-and-filter.yaml │ │ │ └── vpc.yaml │ │ ├── R80 │ │ └── management-r80 │ │ │ ├── README.md │ │ │ └── r80.json │ │ ├── R81 │ │ ├── autoscale │ │ │ ├── autoscale.yaml │ │ │ ├── custom-autoscale.yaml │ │ │ ├── tgw-asg-master.yaml │ │ │ └── tgw-asg.yaml │ │ ├── cluster │ │ │ ├── cluster-master.yaml │ │ │ ├── cluster.yaml │ │ │ ├── cross-az-cluster.yaml │ │ │ ├── geo-cluster-master.yaml │ │ │ ├── geo-cluster.yaml │ │ │ ├── tgw-cross-az-cluster.yaml │ │ │ ├── tgw-ha-master.yaml │ │ │ └── tgw-ha.yaml │ │ ├── gateway │ │ │ ├── gateway-master.yaml │ │ │ ├── gateway.yaml │ │ │ ├── standalone-master.yaml │ │ │ └── standalone.yaml │ │ ├── iam │ │ │ ├── cloudwatch-policy.yaml │ │ │ ├── cluster-iam-role.yaml │ │ │ ├── cme-iam-role.yaml │ │ │ └── sts-role.yaml │ │ ├── management │ │ │ ├── management.yaml │ │ │ └── mds.yaml │ │ └── utils │ │ │ ├── copy-lambda-zip.yaml │ │ │ ├── tap-target-and-filter.yaml │ │ │ └── vpc.yaml │ │ └── README.md ├── azure │ ├── misc │ │ └── azure_ha_test_python2.py │ └── templates │ │ ├── R7730 │ │ ├── cluster-r7730 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ ├── vnet-existing.json │ │ │ └── vnet-new.json │ │ ├── mgmt-r7730 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ ├── vnet-1-subnet-existing.json │ │ │ └── vnet-1-subnet-new.json │ │ ├── single-r7730 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ ├── vnet-existing.json │ │ │ └── vnet-new.json │ │ └── vmss-r7730 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ ├── vnet-1-subnet-existing.json │ │ │ └── vnet-1-subnet-new.json │ │ ├── R8010-R8020 │ │ ├── cluster-r8010 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-existing.json │ │ │ │ └── vnet-new.json │ │ ├── ha-r8010-r8020 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-2-subnet-ha2-existing.json │ │ │ │ └── vnet-2-subnet-ha2-new.json │ │ ├── mgmt-r8010-r8020 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-1-subnet-existing.json │ │ │ │ └── vnet-1-subnet-new.json │ │ ├── single-r8010-r8020 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-existing.json │ │ │ │ └── vnet-new.json │ │ └── vmss-r8010-r8020 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ ├── load-balancers.json │ │ │ ├── vnet-2-subnet-ha-existing.json │ │ │ └── vnet-2-subnet-ha-new.json │ │ ├── R8030 │ │ ├── ha-r8030 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-2-subnet-ha2-existing.json │ │ │ │ └── vnet-2-subnet-ha2-new.json │ │ ├── mds-r8030 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-1-subnet-existing.json │ │ │ │ └── vnet-1-subnet-new.json │ │ ├── mgmt-r8030 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-1-subnet-existing.json │ │ │ │ └── vnet-1-subnet-new.json │ │ ├── single-r8030 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ │ ├── vnet-existing.json │ │ │ │ └── vnet-new.json │ │ └── vmss-r8030 │ │ │ ├── README.MD │ │ │ ├── createUiDefinition.json │ │ │ ├── mainTemplate.json │ │ │ └── nestedtemplates │ │ │ ├── load-balancers.json │ │ │ ├── vnet-2-subnet-ha-existing.json │ │ │ └── vnet-2-subnet-ha-new.json │ │ ├── R8040-R81 │ │ ├── ha-r8040-r81 │ │ │ ├── README.md │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── mds-r8040-r81 │ │ │ ├── README.md │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── mgmt-r840-r81 │ │ │ ├── README.md │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── single-ipv6-r8040-r81 │ │ │ ├── README.md │ │ │ └── mainTemplate.json │ │ ├── single-r8040-r81 │ │ │ ├── README.md │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── vmss-ipv6-r8040-r81 │ │ │ ├── README.md │ │ │ └── mainTemplate.json │ │ └── vmss-r8040-r81 │ │ │ ├── README.md │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── README.MD │ │ ├── stack-R8030 │ │ ├── stack-ha │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ ├── stack-mgmt │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ └── stack-single │ │ │ ├── createUiDefinition.json │ │ │ └── mainTemplate.json │ │ └── stack-R8040-R81 │ │ ├── stack-ha-r8040-r81 │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json │ │ ├── stack-management-r8040-r81 │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json │ │ └── stack-single-r8040-r81 │ │ ├── createUiDefinition.json │ │ └── mainTemplate.json ├── gcp │ ├── R80.30 │ │ ├── autoscale-byol-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-autoscale--byol.py │ │ │ ├── check-point-autoscale--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── autoscale-payg-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-autoscale--payg.py │ │ │ ├── check-point-autoscale--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── ha-byol-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-cluster--byol.py │ │ │ ├── check-point-cluster--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── ha-payg-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-cluster--payg.py │ │ │ ├── check-point-cluster--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── single-byol-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-vsec--byol.py │ │ │ ├── check-point-vsec--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ └── single-payg-R80.30 │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-vsec--payg.py │ │ │ ├── check-point-vsec--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ ├── R80.40-R81 │ │ ├── autoscale-byol │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-autoscale--byol.py │ │ │ ├── check-point-autoscale--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── autoscale-payg │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-autoscale--payg.py │ │ │ ├── check-point-autoscale--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── ha-byol │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-cluster--byol.py │ │ │ ├── check-point-cluster--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── ha-payg │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-cluster--payg.py │ │ │ ├── check-point-cluster--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ ├── single-byol │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-vsec--byol.py │ │ │ ├── check-point-vsec--byol.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ │ └── single-payg │ │ │ ├── README.md │ │ │ ├── c2d_deployment_configuration.json │ │ │ ├── check-point-vsec--payg.py │ │ │ ├── check-point-vsec--payg.py.schema │ │ │ ├── common.py │ │ │ ├── config.yaml │ │ │ ├── default.py │ │ │ ├── images.py │ │ │ └── password.py │ ├── README.MD │ └── deployment-packages │ │ ├── README.MD │ │ ├── autoscale-byol │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-autoscale--byol.py │ │ ├── check-point-autoscale--byol.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py │ │ ├── autoscale-payg │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-autoscale--payg.py │ │ ├── check-point-autoscale--payg.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py │ │ ├── ha-byol │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-cluster--byol.py │ │ ├── check-point-cluster--byol.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py │ │ ├── ha-payg │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-cluster--payg.py │ │ ├── check-point-cluster--payg.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py │ │ ├── single-byol │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-vsec--byol.py │ │ ├── check-point-vsec--byol.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py │ │ └── single-payg │ │ ├── README.md │ │ ├── c2d_deployment_configuration.json │ │ ├── check-point-vsec--payg.py │ │ ├── check-point-vsec--payg.py.schema │ │ ├── common.py │ │ ├── config.yaml │ │ ├── default.py │ │ ├── images.py │ │ └── password.py └── terraform │ ├── ali │ └── R81 │ │ ├── cluster-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cluster │ │ ├── README.md │ │ ├── cluster_member_a_userdata.yaml │ │ ├── cluster_member_b_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gateway-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gateway │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── management-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── management │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── management_userdata.yaml │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ └── modules │ │ ├── cluster-ram-role │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── common │ │ ├── elastic_ip │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── gateway_instance │ │ │ ├── gateway_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── instance_type │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── internal_default_route │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── permissive_sg │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── version_license │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── images │ │ ├── images.yaml │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── vpc │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── aws │ ├── R80.40 │ │ ├── autoscale-gwlb │ │ │ ├── README.md │ │ │ ├── asg_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── autoscale │ │ │ ├── README.md │ │ │ ├── asg_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cluster-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cluster │ │ │ ├── README.md │ │ │ ├── cluster_member_a_userdata.yaml │ │ │ ├── cluster_member_b_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cme-iam-role-gwlb │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cme-iam-role │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cross-az-cluster-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── cross-az-cluster │ │ │ ├── README.md │ │ │ ├── cluster_member_a_userdata.yaml │ │ │ ├── cluster_member_b_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── gateway-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── gateway │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── gwlb-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── gwlb │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── management │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── management_userdata.yaml │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── mds │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── mds_userdata.yaml │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── modules │ │ │ ├── amis │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ ├── cloudwatch-policy │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── cluster-iam-role │ │ │ │ ├── main.tf │ │ │ │ └── output.tf │ │ │ ├── common │ │ │ │ ├── elastic_ip │ │ │ │ │ ├── locals.tf │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── output.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── gateway_instance │ │ │ │ │ ├── gateway_userdata.yaml │ │ │ │ │ ├── locals.tf │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── output.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── instance_type │ │ │ │ │ ├── main.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── internal_default_route │ │ │ │ │ ├── locals.tf │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── output.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── load_balancer │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── output.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── permissive_sg │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── output.tf │ │ │ │ │ └── variables.tf │ │ │ │ └── version_license │ │ │ │ │ ├── main.tf │ │ │ │ │ └── variables.tf │ │ │ ├── custom-autoscale │ │ │ │ ├── locals.tf │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ └── vpc │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ ├── qs-autoscale-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── qs-autoscale │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── standalone-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── standalone │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── standalone_userdata.yaml │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── tap │ │ │ ├── Check Point NOW onboarding page.docx │ │ │ ├── CheckPoint_NOW_onboarding_page.pdf │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── tap_lambda.py │ │ │ ├── tap_termination_lambda.py │ │ │ ├── tap_user_data.sh │ │ │ ├── terraform.tfvars │ │ │ └── variables.tf │ │ ├── tests │ │ │ ├── cluster_master_test.go │ │ │ ├── cross_az_cluster_master_test.go │ │ │ ├── gateway_master_test.go │ │ │ ├── globals.go │ │ │ ├── gwlb_master_test.go │ │ │ ├── qs_autoscale_master_test.go │ │ │ ├── standalone_master_test.go │ │ │ ├── tgw_asg_master_test.go │ │ │ ├── tgw_cross_az_cluster_master_test.go │ │ │ └── tgw_gwlb_master_test.go │ │ ├── tgw-asg-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── tgw-asg │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── tgw-cross-az-cluster-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── tgw-cross-az-cluster │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── tgw-gwlb-master │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── tgw-gwlb │ │ │ ├── README.md │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── R81 │ │ ├── autoscale-gwlb │ │ ├── README.md │ │ ├── asg_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── autoscale │ │ ├── README.md │ │ ├── asg_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cluster-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cluster │ │ ├── README.md │ │ ├── cluster_member_a_userdata.yaml │ │ ├── cluster_member_b_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cme-iam-role-gwlb │ │ ├── README.md │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cme-iam-role │ │ ├── README.md │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cross-az-cluster-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── cross-az-cluster │ │ ├── README.md │ │ ├── cluster_member_a_userdata.yaml │ │ ├── cluster_member_b_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gateway-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gateway │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gwlb-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── gwlb │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── management │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── management_userdata.yaml │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── mds │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── mds_userdata.yaml │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── modules │ │ ├── amis │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── cloudwatch-policy │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── cluster-iam-role │ │ │ ├── main.tf │ │ │ └── output.tf │ │ ├── common │ │ │ ├── elastic_ip │ │ │ │ ├── locals.tf │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ ├── gateway_instance │ │ │ │ ├── gateway_userdata.yaml │ │ │ │ ├── locals.tf │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ ├── instance_type │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── internal_default_route │ │ │ │ ├── locals.tf │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ ├── load_balancer │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ ├── permissive_sg │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ └── variables.tf │ │ │ └── version_license │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ ├── custom-autoscale │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ └── vpc │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── qs-autoscale-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── qs-autoscale │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── standalone-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── standalone │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── standalone_userdata.yaml │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── tests │ │ ├── cluster_master_test.go │ │ ├── cross_az_cluster_master_test.go │ │ ├── gateway_master_test.go │ │ ├── globals.go │ │ ├── gwlb_master_test.go │ │ ├── qs_autoscale_master_test.go │ │ ├── standalone_master_test.go │ │ ├── tgw_asg_master_test.go │ │ ├── tgw_cross_az_cluster_master_test.go │ │ └── tgw_gwlb_master_test.go │ │ ├── tgw-asg-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── tgw-asg │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── tgw-cross-az-cluster-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── tgw-cross-az-cluster │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── tgw-gwlb-master │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ └── tgw-gwlb │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ ├── azure │ ├── R8040-R81 │ │ ├── high-availability-existing-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── high-availability-new-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── management-existing-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── management-new-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── mds-existing-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── mds-new-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── modules │ │ │ ├── add-routing-intent.py │ │ │ ├── common │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── network-security-group │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ └── vnet │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ ├── nva-into-existing-hub │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── nva-into-new-vwan │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── single-gateway-existing-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── single-gateway-new-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── vmss-existing-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── vmss-new-vnet │ │ │ ├── README.md │ │ │ ├── azure_public_key │ │ │ ├── cloud-init.sh │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── README.md │ └── gcp │ ├── R8040-R81 │ ├── autoscale-into-existing-vpc │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── autoscale-into-new-vpc │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── common │ │ ├── cluster-member │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── firewall-rule │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── members-a-b │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── network-and-subnet │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ └── startup-script.sh │ ├── high-availability │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── single-into-existing-vpc │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ └── single-into-new-vpc │ │ ├── README.md │ │ ├── main.tf │ │ ├── output.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ └── separate-single-and-autoscale │ ├── autoscale-into-existing-vpc │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── autoscale-into-new-vpc │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── common │ ├── cluster-member │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── common │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── firewall-rule │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── network-and-subnet │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ └── startup-script.sh │ ├── single-into-existing-vpc │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ └── variables.tf │ └── single-into-new-vpc │ ├── README.md │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ └── variables.tf └── terraform ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.MD ├── alicloud ├── cluster-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cluster │ ├── README.md │ ├── cluster_member_a_userdata.yaml │ ├── cluster_member_b_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gateway-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gateway │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── management_userdata.yaml │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf └── modules │ ├── cluster-ram-role │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── variables.tf │ └── versions.tf │ ├── common │ ├── elastic_ip │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── gateway_instance │ │ ├── gateway_userdata.yaml │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── instance_type │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── internal_default_route │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── permissive_sg │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ └── version_license │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── images │ ├── images.yaml │ ├── main.tf │ ├── output.tf │ ├── variables.tf │ └── versions.tf │ └── vpc │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── variables.tf │ └── versions.tf ├── aws ├── README.md ├── autoscale-gwlb │ ├── README.md │ ├── asg_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── autoscale-master │ ├── README.md │ ├── asg_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── autoscale │ ├── README.md │ ├── asg_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cluster-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cluster │ ├── README.md │ ├── cluster_member_a_userdata.yaml │ ├── cluster_member_b_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cme-iam-role-gwlb │ ├── README.md │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cme-iam-role │ ├── README.md │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cross-az-cluster-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── cross-az-cluster │ ├── README.md │ ├── cluster_member_a_userdata.yaml │ ├── cluster_member_b_userdata.yaml │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gateway-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gateway │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gwlb-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── gwlb │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── management_userdata.yaml │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── management_userdata.yaml │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── mds-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── mds_userdata.yaml │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── mds │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── mds_userdata.yaml │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── modules │ ├── amis │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── cloudwatch-policy │ │ ├── main.tf │ │ └── variables.tf │ ├── cluster-iam-role │ │ ├── main.tf │ │ └── output.tf │ ├── common │ │ ├── elastic_ip │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── gateway_instance │ │ │ ├── gateway_userdata.yaml │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── instance_type │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── internal_default_route │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── load_balancer │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ ├── permissive_sg │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ └── version_license │ │ │ ├── main.tf │ │ │ └── variables.tf │ ├── custom-autoscale │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── variables.tf │ │ └── vpc │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ └── vpc │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf ├── qs-autoscale-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── qs-autoscale │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── standalone-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── standalone │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── standalone_userdata.yaml │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── tap │ ├── Check Point NOW onboarding page.docx │ ├── CheckPoint_NOW_onboarding_page.pdf │ ├── README.md │ ├── main.tf │ ├── output.tf │ ├── tap_lambda.py │ ├── tap_termination_lambda.py │ ├── tap_user_data.sh │ ├── terraform.tfvars │ └── variables.tf ├── tgw-asg-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── tgw-asg │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── tgw-cross-az-cluster-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── tgw-cross-az-cluster │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── tgw-gwlb-master │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf └── tgw-gwlb │ ├── README.md │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── azure ├── README.md ├── high-availability-existing-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── high-availability-new-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management-existing-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── management-new-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── mds-existing-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── mds-new-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── modules │ ├── common │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── network-security-group │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ └── vnet │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf ├── nva-into-existing-hub │ ├── README.md │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── nva-into-new-vwan │ ├── README.md │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── single-gateway-existing-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── single-gateway-new-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── vmss-existing-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf └── vmss-new-vnet │ ├── README.md │ ├── azure_public_key │ ├── cloud-init.sh │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf └── gcp ├── README.md ├── autoscale ├── README.md ├── locals.tf ├── main.tf ├── output.tf ├── terraform.tfvars ├── variables.tf └── versions.tf ├── common ├── autoscale-common │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── cluster-member │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── common │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── firewall-rule │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── members-a-b │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── network-and-subnet │ ├── main.tf │ ├── output.tf │ └── variables.tf ├── single-common │ ├── main.tf │ ├── output.tf │ └── variables.tf └── startup-script.sh ├── high-availability ├── README.md ├── locals.tf ├── main.tf ├── output.tf ├── terraform.tfvars ├── variables.tf └── versions.tf └── single ├── README.md ├── locals.tf ├── main.tf ├── output.tf ├── terraform.tfvars ├── variables.tf └── versions.tf /.github/workflows/code-analysis.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/README.md -------------------------------------------------------------------------------- /aws/images/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/images/launch.png -------------------------------------------------------------------------------- /aws/images/step1_aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/images/step1_aws.png -------------------------------------------------------------------------------- /aws/images/step2_aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/images/step2_aws.png -------------------------------------------------------------------------------- /aws/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/README.md -------------------------------------------------------------------------------- /aws/templates/asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/asg/README.md -------------------------------------------------------------------------------- /aws/templates/asg/autoscale-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/asg/autoscale-master.yaml -------------------------------------------------------------------------------- /aws/templates/asg/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/asg/autoscale.yaml -------------------------------------------------------------------------------- /aws/templates/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/cluster/README.md -------------------------------------------------------------------------------- /aws/templates/cluster/cluster-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/cluster/cluster-master.yaml -------------------------------------------------------------------------------- /aws/templates/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/cluster/cluster.yaml -------------------------------------------------------------------------------- /aws/templates/cross-az-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/cross-az-cluster/README.md -------------------------------------------------------------------------------- /aws/templates/cross-az-cluster/cross-az-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/cross-az-cluster/cross-az-cluster.yaml -------------------------------------------------------------------------------- /aws/templates/general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/general/README.md -------------------------------------------------------------------------------- /aws/templates/general/amis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/general/amis.yaml -------------------------------------------------------------------------------- /aws/templates/general/cme-iam-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/general/cme-iam-role.yaml -------------------------------------------------------------------------------- /aws/templates/geo-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/geo-cluster/README.md -------------------------------------------------------------------------------- /aws/templates/geo-cluster/geo-cluster-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/geo-cluster/geo-cluster-master.yaml -------------------------------------------------------------------------------- /aws/templates/geo-cluster/geo-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/geo-cluster/geo-cluster.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/README.md -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/gwlb-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/gwlb-master.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/gwlb.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/qs-gwlb-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/qs-gwlb-master.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/qs-gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/qs-gwlb.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/tgw-gwlb-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/tgw-gwlb-master.yaml -------------------------------------------------------------------------------- /aws/templates/gwlb-asg/tgw-gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/gwlb-asg/tgw-gwlb.yaml -------------------------------------------------------------------------------- /aws/templates/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/management/README.md -------------------------------------------------------------------------------- /aws/templates/management/management-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/management/management-master.yaml -------------------------------------------------------------------------------- /aws/templates/management/management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/management/management.yaml -------------------------------------------------------------------------------- /aws/templates/mds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/mds/README.md -------------------------------------------------------------------------------- /aws/templates/mds/mds-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/mds/mds-master.yaml -------------------------------------------------------------------------------- /aws/templates/mds/mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/mds/mds.yaml -------------------------------------------------------------------------------- /aws/templates/single-gw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/single-gw/README.md -------------------------------------------------------------------------------- /aws/templates/single-gw/gateway-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/single-gw/gateway-master.yaml -------------------------------------------------------------------------------- /aws/templates/single-gw/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/single-gw/gateway.yaml -------------------------------------------------------------------------------- /aws/templates/standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/standalone/README.md -------------------------------------------------------------------------------- /aws/templates/standalone/standalone-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/standalone/standalone-master.yaml -------------------------------------------------------------------------------- /aws/templates/standalone/standalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/standalone/standalone.yaml -------------------------------------------------------------------------------- /aws/templates/tgw-asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-asg/README.md -------------------------------------------------------------------------------- /aws/templates/tgw-asg/tgw-asg-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-asg/tgw-asg-master.yaml -------------------------------------------------------------------------------- /aws/templates/tgw-asg/tgw-asg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-asg/tgw-asg.yaml -------------------------------------------------------------------------------- /aws/templates/tgw-cross-az-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-cross-az-cluster/README.md -------------------------------------------------------------------------------- /aws/templates/tgw-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-ha/README.md -------------------------------------------------------------------------------- /aws/templates/tgw-ha/tgw-ha-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-ha/tgw-ha-master.yaml -------------------------------------------------------------------------------- /aws/templates/tgw-ha/tgw-ha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/aws/templates/tgw-ha/tgw-ha.yaml -------------------------------------------------------------------------------- /azure/misc/azure_ha_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/misc/azure_ha_test.py -------------------------------------------------------------------------------- /azure/misc/nva_bgp_config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/misc/nva_bgp_config.conf -------------------------------------------------------------------------------- /azure/templates/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/README.MD -------------------------------------------------------------------------------- /azure/templates/marketplace-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-ha/README.md -------------------------------------------------------------------------------- /azure/templates/marketplace-ha/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-ha/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/marketplace-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-management/README.md -------------------------------------------------------------------------------- /azure/templates/marketplace-mds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-mds/README.md -------------------------------------------------------------------------------- /azure/templates/marketplace-mds/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-mds/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/marketplace-single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-single/README.md -------------------------------------------------------------------------------- /azure/templates/marketplace-single/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-single/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/marketplace-vmss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-vmss/README.md -------------------------------------------------------------------------------- /azure/templates/marketplace-vmss/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/marketplace-vmss/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/azure-func-sami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/azure-func-sami.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/load-balancers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/load-balancers.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/vnet-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/vnet-existing.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/vnet-new-no-rt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/vnet-new-no-rt.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/vnet-new-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/vnet-new-stack.json -------------------------------------------------------------------------------- /azure/templates/nestedtemplates/vnet-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/nestedtemplates/vnet-new.json -------------------------------------------------------------------------------- /azure/templates/single-ipv6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/single-ipv6/README.md -------------------------------------------------------------------------------- /azure/templates/single-ipv6/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/single-ipv6/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/vmss-ipv6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/vmss-ipv6/README.md -------------------------------------------------------------------------------- /azure/templates/vmss-ipv6/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/vmss-ipv6/mainTemplate.json -------------------------------------------------------------------------------- /azure/templates/vwan-managed-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/vwan-managed-app/README.md -------------------------------------------------------------------------------- /azure/templates/vwan-managed-app/mainTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/azure/templates/vwan-managed-app/mainTemplate.json -------------------------------------------------------------------------------- /cloudguard-network-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/cloudguard-network-application/README.md -------------------------------------------------------------------------------- /cloudguard-network-application/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/cloudguard-network-application/azure/README.md -------------------------------------------------------------------------------- /cloudguard-network-application/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/cloudguard-network-application/gcp/README.md -------------------------------------------------------------------------------- /common/central_license_debug_collector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/central_license_debug_collector.sh -------------------------------------------------------------------------------- /common/cme_api_postman/CME_API.postman_collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/cme_api_postman/CME_API.postman_collection -------------------------------------------------------------------------------- /common/cme_api_postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/cme_api_postman/README.md -------------------------------------------------------------------------------- /common/cme_xff_inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/cme_xff_inject.sh -------------------------------------------------------------------------------- /common/custom-management-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/custom-management-script.py -------------------------------------------------------------------------------- /common/custom_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/custom_scripts/README.md -------------------------------------------------------------------------------- /common/custom_scripts/password_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/custom_scripts/password_script.sh -------------------------------------------------------------------------------- /common/maintenance_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/maintenance_mode/README.md -------------------------------------------------------------------------------- /common/maintenance_mode/grub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/maintenance_mode/grub.conf -------------------------------------------------------------------------------- /common/simulate_cpu_load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/simulate_cpu_load.sh -------------------------------------------------------------------------------- /common/static_route_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/static_route_config.sh -------------------------------------------------------------------------------- /common/vwan_postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/vwan_postman/README.md -------------------------------------------------------------------------------- /common/vwan_postman/vwan.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/common/vwan_postman/vwan.postman_collection.json -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/cme/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/cme/examples/README.md -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/README.md -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/app-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/app-main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/app-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/app-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/cpcluster-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/cpcluster-main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/cpcluster-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/cpcluster-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/cpmgmt-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/cpmgmt-main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/cpmgmt-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/cpmgmt-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/customdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/customdata.sh -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/deployment-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/deployment-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/gwlb-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/gwlb-main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/gwlb-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/gwlb-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/common/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/modules/common/main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/common/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/network-security-group/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/modules/vnet/main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/modules/vnet/outputs.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/modules/vnet/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/net-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/net-main.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/net-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/net-variables.tf -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/terraform.tfvars -------------------------------------------------------------------------------- /contrib/terraform-azure-gwlb/tfc-project.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/contrib/terraform-azure-gwlb/tfc-project.tf -------------------------------------------------------------------------------- /contrib/terraform/azure/vmss-new-vnet-with-peer/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/README.md -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.30/asg-r8030/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.30/asg-r8030/README.md -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.30/mds-r8030/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.30/mds-r8030/README.md -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.30/mds-r8030/mds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.30/mds-r8030/mds.json -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/cluster/cluster.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/cluster/tgw-ha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/cluster/tgw-ha.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/gateway/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/gateway/gateway.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/gwlb/amis-gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/gwlb/amis-gwlb.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/gwlb/gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/gwlb/gwlb.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/gwlb/tgw-gwlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/gwlb/tgw-gwlb.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/iam/sts-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/iam/sts-role.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/management/mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/management/mds.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80.40/utils/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80.40/utils/vpc.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R80/management-r80/r80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R80/management-r80/r80.json -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/autoscale/tgw-asg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/autoscale/tgw-asg.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/cluster/cluster.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/cluster/tgw-ha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/cluster/tgw-ha.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/gateway/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/gateway/gateway.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/gateway/standalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/gateway/standalone.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/iam/cme-iam-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/iam/cme-iam-role.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/iam/sts-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/iam/sts-role.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/management/mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/management/mds.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/R81/utils/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/R81/utils/vpc.yaml -------------------------------------------------------------------------------- /deprecated/aws/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/aws/templates/README.md -------------------------------------------------------------------------------- /deprecated/azure/misc/azure_ha_test_python2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/azure/misc/azure_ha_test_python2.py -------------------------------------------------------------------------------- /deprecated/azure/templates/R8030/ha-r8030/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/azure/templates/R8030/ha-r8030/README.MD -------------------------------------------------------------------------------- /deprecated/azure/templates/R8030/mds-r8030/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/azure/templates/R8030/mds-r8030/README.MD -------------------------------------------------------------------------------- /deprecated/azure/templates/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/azure/templates/README.MD -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-byol-R80.30/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-byol-R80.30/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/ha-payg-R80.30/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/ha-payg-R80.30/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-byol-R80.30/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-byol-R80.30/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.30/single-payg-R80.30/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.30/single-payg-R80.30/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-byol/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-byol/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/autoscale-payg/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/autoscale-payg/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-byol/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-byol/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/ha-payg/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/ha-payg/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-byol/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-byol/password.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/README.md -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/common.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/config.yaml -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/default.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/images.py -------------------------------------------------------------------------------- /deprecated/gcp/R80.40-R81/single-payg/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/R80.40-R81/single-payg/password.py -------------------------------------------------------------------------------- /deprecated/gcp/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/README.MD -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/README.MD -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-byol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-byol/README.md -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-byol/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-byol/common.py -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-byol/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-byol/images.py -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-payg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-payg/README.md -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-payg/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-payg/common.py -------------------------------------------------------------------------------- /deprecated/gcp/deployment-packages/ha-payg/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/gcp/deployment-packages/ha-payg/images.py -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/README.md -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/cluster/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/README.md -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/gateway/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/gateway/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/README.md -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/management/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/common/instance_type/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/images/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/modules/images/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/images/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/vpc/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/modules/vpc/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/modules/vpc/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/vpc/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/modules/vpc/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/ali/R81/modules/vpc/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/ali/R81/modules/vpc/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/autoscale/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/autoscale/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/autoscale/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/autoscale/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cluster/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/cme-iam-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/cme-iam-role/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gateway/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gateway/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/gwlb/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/management/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/management/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/management/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/management/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/management/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/management/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/terraform.tfvars -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/mds/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/mds/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/modules/amis/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/modules/amis/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/modules/vpc/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/qs-autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/qs-autoscale/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/standalone/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/standalone/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/standalone/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/standalone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/standalone/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/standalone/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/standalone/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/tap_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/tap_lambda.py -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/tap_user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/tap_user_data.sh -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/terraform.tfvars -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tap/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tap/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tests/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tests/globals.go -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-asg/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-asg/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-gwlb/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-gwlb/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-gwlb/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-gwlb/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R80.40/tgw-gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R80.40/tgw-gwlb/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale-gwlb/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/autoscale/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/autoscale/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cluster/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cme-iam-role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cme-iam-role/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cme-iam-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cme-iam-role/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/cme-iam-role/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/cme-iam-role/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gateway/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gateway/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb-master/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb-master/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb-master/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb-master/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/terraform.tfvars -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/gwlb/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/management/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/mds_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/mds_userdata.yaml -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/terraform.tfvars -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/mds/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/mds/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/modules/amis/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/modules/amis/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/modules/amis/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/modules/amis/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/modules/vpc/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/modules/vpc/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/modules/vpc/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/qs-autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/qs-autoscale/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/qs-autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/qs-autoscale/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/qs-autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/qs-autoscale/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/qs-autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/qs-autoscale/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/standalone/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/standalone/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tests/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tests/globals.go -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-asg/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-asg/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb-master/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/README.md -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/locals.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/main.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/output.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/variables.tf -------------------------------------------------------------------------------- /deprecated/terraform/aws/R81/tgw-gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/aws/R81/tgw-gwlb/versions.tf -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/high-availability-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/high-availability-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/management-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/management-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/mds-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/mds-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/modules/common/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/modules/network-security-group/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/modules/vnet/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/single-gateway-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/single-gateway-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/vmss-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/R8040-R81/vmss-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/terraform/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/deprecated/terraform/azure/README.md -------------------------------------------------------------------------------- /deprecated/terraform/gcp/separate-single-and-autoscale/common/common/main.tf: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /deprecated/terraform/gcp/separate-single-and-autoscale/common/common/output.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/LICENSE -------------------------------------------------------------------------------- /terraform/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/README.MD -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/README.md -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster-master/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/README.md -------------------------------------------------------------------------------- /terraform/alicloud/cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/terraform.tfvars -------------------------------------------------------------------------------- /terraform/alicloud/cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/cluster/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/README.md -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway-master/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/README.md -------------------------------------------------------------------------------- /terraform/alicloud/gateway/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/terraform.tfvars -------------------------------------------------------------------------------- /terraform/alicloud/gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/gateway/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/gateway/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/management-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/README.md -------------------------------------------------------------------------------- /terraform/alicloud/management-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/management-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/management-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/management-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/management-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management-master/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/README.md -------------------------------------------------------------------------------- /terraform/alicloud/management/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/management/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/management/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/terraform.tfvars -------------------------------------------------------------------------------- /terraform/alicloud/management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/management/versions.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/cluster-ram-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/cluster-ram-role/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/common/elastic_ip/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/common/elastic_ip/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/common/instance_type/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /terraform/alicloud/modules/images/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/images/images.yaml -------------------------------------------------------------------------------- /terraform/alicloud/modules/images/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/images/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/images/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/images/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/images/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/images/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/images/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /terraform/alicloud/modules/vpc/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/vpc/locals.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/vpc/main.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/vpc/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/vpc/output.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/vpc/variables.tf -------------------------------------------------------------------------------- /terraform/alicloud/modules/vpc/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/alicloud/modules/vpc/versions.tf -------------------------------------------------------------------------------- /terraform/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/README.md -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/README.md -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/asg_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/asg_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/locals.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/main.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/output.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/variables.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-gwlb/versions.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/README.md -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/asg_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/asg_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/README.md -------------------------------------------------------------------------------- /terraform/aws/autoscale/asg_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/asg_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/locals.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/main.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/output.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/autoscale/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/variables.tf -------------------------------------------------------------------------------- /terraform/aws/autoscale/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/autoscale/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cluster-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/README.md -------------------------------------------------------------------------------- /terraform/aws/cluster-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/cluster-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/cluster-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/cluster-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cluster-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/README.md -------------------------------------------------------------------------------- /terraform/aws/cluster/cluster_member_a_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/cluster_member_a_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/cluster/cluster_member_b_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/cluster_member_b_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/locals.tf -------------------------------------------------------------------------------- /terraform/aws/cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/main.tf -------------------------------------------------------------------------------- /terraform/aws/cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/output.tf -------------------------------------------------------------------------------- /terraform/aws/cluster/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cluster/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/README.md -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/main.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/output.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role-gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role-gwlb/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/README.md -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/main.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/output.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cme-iam-role/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cme-iam-role/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/README.md -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/README.md -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/locals.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/main.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/output.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/variables.tf -------------------------------------------------------------------------------- /terraform/aws/cross-az-cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/cross-az-cluster/versions.tf -------------------------------------------------------------------------------- /terraform/aws/gateway-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/README.md -------------------------------------------------------------------------------- /terraform/aws/gateway-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/gateway-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/gateway-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/gateway-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/gateway-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/gateway-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/README.md -------------------------------------------------------------------------------- /terraform/aws/gateway/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/locals.tf -------------------------------------------------------------------------------- /terraform/aws/gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/main.tf -------------------------------------------------------------------------------- /terraform/aws/gateway/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/output.tf -------------------------------------------------------------------------------- /terraform/aws/gateway/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/variables.tf -------------------------------------------------------------------------------- /terraform/aws/gateway/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gateway/versions.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/README.md -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/README.md -------------------------------------------------------------------------------- /terraform/aws/gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/locals.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/main.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/output.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/variables.tf -------------------------------------------------------------------------------- /terraform/aws/gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/gwlb/versions.tf -------------------------------------------------------------------------------- /terraform/aws/management-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/README.md -------------------------------------------------------------------------------- /terraform/aws/management-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/management-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/management-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/management-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/management-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/management-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/README.md -------------------------------------------------------------------------------- /terraform/aws/management/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/locals.tf -------------------------------------------------------------------------------- /terraform/aws/management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/main.tf -------------------------------------------------------------------------------- /terraform/aws/management/management_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/management_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/management/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/output.tf -------------------------------------------------------------------------------- /terraform/aws/management/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/management/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/variables.tf -------------------------------------------------------------------------------- /terraform/aws/management/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/management/versions.tf -------------------------------------------------------------------------------- /terraform/aws/mds-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/README.md -------------------------------------------------------------------------------- /terraform/aws/mds-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/mds-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/mds-master/mds_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/mds_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/mds-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/mds-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/mds-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/mds-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/mds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/README.md -------------------------------------------------------------------------------- /terraform/aws/mds/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/locals.tf -------------------------------------------------------------------------------- /terraform/aws/mds/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/main.tf -------------------------------------------------------------------------------- /terraform/aws/mds/mds_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/mds_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/mds/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/output.tf -------------------------------------------------------------------------------- /terraform/aws/mds/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/mds/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/variables.tf -------------------------------------------------------------------------------- /terraform/aws/mds/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/mds/versions.tf -------------------------------------------------------------------------------- /terraform/aws/modules/amis/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/amis/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/amis/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/amis/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/amis/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/amis/variables.tf -------------------------------------------------------------------------------- /terraform/aws/modules/cloudwatch-policy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/cloudwatch-policy/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/cloudwatch-policy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/cloudwatch-policy/variables.tf -------------------------------------------------------------------------------- /terraform/aws/modules/cluster-iam-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/cluster-iam-role/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/cluster-iam-role/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/cluster-iam-role/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/elastic_ip/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/elastic_ip/locals.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/elastic_ip/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/elastic_ip/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/elastic_ip/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/elastic_ip/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/elastic_ip/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/elastic_ip/variables.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/instance_type/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/instance_type/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/load_balancer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/load_balancer/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/load_balancer/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/load_balancer/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/permissive_sg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/permissive_sg/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/permissive_sg/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/permissive_sg/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/common/version_license/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/common/version_license/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/custom-autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/custom-autoscale/locals.tf -------------------------------------------------------------------------------- /terraform/aws/modules/custom-autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/custom-autoscale/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/custom-autoscale/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/custom-autoscale/variables.tf -------------------------------------------------------------------------------- /terraform/aws/modules/custom-autoscale/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/custom-autoscale/vpc/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/custom-autoscale/vpc/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/custom-autoscale/vpc/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/vpc/main.tf -------------------------------------------------------------------------------- /terraform/aws/modules/vpc/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/vpc/output.tf -------------------------------------------------------------------------------- /terraform/aws/modules/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/modules/vpc/variables.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/README.md -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/README.md -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/locals.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/main.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/output.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/variables.tf -------------------------------------------------------------------------------- /terraform/aws/qs-autoscale/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/qs-autoscale/versions.tf -------------------------------------------------------------------------------- /terraform/aws/standalone-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/README.md -------------------------------------------------------------------------------- /terraform/aws/standalone-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/standalone-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/standalone-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/standalone-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/standalone-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/standalone-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/README.md -------------------------------------------------------------------------------- /terraform/aws/standalone/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/locals.tf -------------------------------------------------------------------------------- /terraform/aws/standalone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/main.tf -------------------------------------------------------------------------------- /terraform/aws/standalone/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/output.tf -------------------------------------------------------------------------------- /terraform/aws/standalone/standalone_userdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/standalone_userdata.yaml -------------------------------------------------------------------------------- /terraform/aws/standalone/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/standalone/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/variables.tf -------------------------------------------------------------------------------- /terraform/aws/standalone/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/standalone/versions.tf -------------------------------------------------------------------------------- /terraform/aws/tap/CheckPoint_NOW_onboarding_page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/CheckPoint_NOW_onboarding_page.pdf -------------------------------------------------------------------------------- /terraform/aws/tap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/README.md -------------------------------------------------------------------------------- /terraform/aws/tap/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/main.tf -------------------------------------------------------------------------------- /terraform/aws/tap/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/output.tf -------------------------------------------------------------------------------- /terraform/aws/tap/tap_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/tap_lambda.py -------------------------------------------------------------------------------- /terraform/aws/tap/tap_termination_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/tap_termination_lambda.py -------------------------------------------------------------------------------- /terraform/aws/tap/tap_user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/tap_user_data.sh -------------------------------------------------------------------------------- /terraform/aws/tap/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/tap/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tap/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/locals.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/output.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-asg/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-asg/versions.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster-master/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/locals.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/output.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-cross-az-cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-cross-az-cluster/versions.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/locals.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/output.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb-master/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb-master/versions.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/README.md -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/locals.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/main.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/output.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/terraform.tfvars -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/variables.tf -------------------------------------------------------------------------------- /terraform/aws/tgw-gwlb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/aws/tgw-gwlb/versions.tf -------------------------------------------------------------------------------- /terraform/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/README.md -------------------------------------------------------------------------------- /terraform/azure/high-availability-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/high-availability-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/high-availability-new-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/high-availability-new-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/management-existing-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-existing-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/management-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/management-existing-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-existing-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/cloud-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/cloud-init.sh -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/management-new-vnet/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/management-new-vnet/versions.tf -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/cloud-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/cloud-init.sh -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/terraform.tfvars -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/mds-existing-vnet/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-existing-vnet/versions.tf -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/cloud-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/cloud-init.sh -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/terraform.tfvars -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/mds-new-vnet/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/mds-new-vnet/versions.tf -------------------------------------------------------------------------------- /terraform/azure/modules/common/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/common/main.tf -------------------------------------------------------------------------------- /terraform/azure/modules/common/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/common/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/modules/common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/common/variables.tf -------------------------------------------------------------------------------- /terraform/azure/modules/common/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /terraform/azure/modules/network-security-group/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /terraform/azure/modules/vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/modules/vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/modules/vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/modules/vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/modules/vnet/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.14.3" 3 | } -------------------------------------------------------------------------------- /terraform/azure/nva-into-existing-hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-existing-hub/README.md -------------------------------------------------------------------------------- /terraform/azure/nva-into-existing-hub/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-existing-hub/main.tf -------------------------------------------------------------------------------- /terraform/azure/nva-into-existing-hub/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-existing-hub/variables.tf -------------------------------------------------------------------------------- /terraform/azure/nva-into-existing-hub/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-existing-hub/versions.tf -------------------------------------------------------------------------------- /terraform/azure/nva-into-new-vwan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-new-vwan/README.md -------------------------------------------------------------------------------- /terraform/azure/nva-into-new-vwan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-new-vwan/main.tf -------------------------------------------------------------------------------- /terraform/azure/nva-into-new-vwan/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-new-vwan/terraform.tfvars -------------------------------------------------------------------------------- /terraform/azure/nva-into-new-vwan/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-new-vwan/variables.tf -------------------------------------------------------------------------------- /terraform/azure/nva-into-new-vwan/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/nva-into-new-vwan/versions.tf -------------------------------------------------------------------------------- /terraform/azure/single-gateway-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/single-gateway-new-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/single-gateway-new-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/single-gateway-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/single-gateway-new-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/single-gateway-new-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/single-gateway-new-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/single-gateway-new-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/cloud-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/cloud-init.sh -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-existing-vnet/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-existing-vnet/versions.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/README.md -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/azure_public_key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/cloud-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/cloud-init.sh -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/main.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/outputs.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/terraform.tfvars -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/variables.tf -------------------------------------------------------------------------------- /terraform/azure/vmss-new-vnet/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/azure/vmss-new-vnet/versions.tf -------------------------------------------------------------------------------- /terraform/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/README.md -------------------------------------------------------------------------------- /terraform/gcp/autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/README.md -------------------------------------------------------------------------------- /terraform/gcp/autoscale/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/locals.tf -------------------------------------------------------------------------------- /terraform/gcp/autoscale/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/main.tf -------------------------------------------------------------------------------- /terraform/gcp/autoscale/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/output.tf -------------------------------------------------------------------------------- /terraform/gcp/autoscale/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/terraform.tfvars -------------------------------------------------------------------------------- /terraform/gcp/autoscale/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/autoscale/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/autoscale/versions.tf -------------------------------------------------------------------------------- /terraform/gcp/common/autoscale-common/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/autoscale-common/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/autoscale-common/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/autoscale-common/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/autoscale-common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/autoscale-common/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/cluster-member/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/cluster-member/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/cluster-member/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/cluster-member/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/cluster-member/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/cluster-member/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/common/main.tf: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /terraform/gcp/common/common/output.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/gcp/common/common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/common/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/firewall-rule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/firewall-rule/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/firewall-rule/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/firewall-rule/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/firewall-rule/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/firewall-rule/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/members-a-b/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/members-a-b/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/members-a-b/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/members-a-b/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/members-a-b/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/members-a-b/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/network-and-subnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/network-and-subnet/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/network-and-subnet/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/network-and-subnet/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/single-common/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/single-common/main.tf -------------------------------------------------------------------------------- /terraform/gcp/common/single-common/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/single-common/output.tf -------------------------------------------------------------------------------- /terraform/gcp/common/single-common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/single-common/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/common/startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/common/startup-script.sh -------------------------------------------------------------------------------- /terraform/gcp/high-availability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/README.md -------------------------------------------------------------------------------- /terraform/gcp/high-availability/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/locals.tf -------------------------------------------------------------------------------- /terraform/gcp/high-availability/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/main.tf -------------------------------------------------------------------------------- /terraform/gcp/high-availability/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/output.tf -------------------------------------------------------------------------------- /terraform/gcp/high-availability/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/terraform.tfvars -------------------------------------------------------------------------------- /terraform/gcp/high-availability/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/high-availability/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/high-availability/versions.tf -------------------------------------------------------------------------------- /terraform/gcp/single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/README.md -------------------------------------------------------------------------------- /terraform/gcp/single/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/locals.tf -------------------------------------------------------------------------------- /terraform/gcp/single/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/main.tf -------------------------------------------------------------------------------- /terraform/gcp/single/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/output.tf -------------------------------------------------------------------------------- /terraform/gcp/single/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/terraform.tfvars -------------------------------------------------------------------------------- /terraform/gcp/single/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/variables.tf -------------------------------------------------------------------------------- /terraform/gcp/single/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckPointSW/CloudGuardIaaS/HEAD/terraform/gcp/single/versions.tf --------------------------------------------------------------------------------