From 78f9412be23d5810e4f42d700c2227479dc4bbff Mon Sep 17 00:00:00 2001 From: natanelm Date: Wed, 20 Aug 2025 13:56:38 +0000 Subject: [PATCH] VSECPC-10387 | Remove V2, V3 VMs from Terraform templates --- modules/common/variables.tf | 22 ++++++------------- .../high_availability_existing_vnet/README.md | 4 ++-- modules/high_availability_new_vnet/README.md | 4 ++-- modules/management_existing_vnet/README.md | 4 ++-- modules/management_new_vnet/README.md | 4 ++-- modules/mds_existing_vnet/README.md | 4 ++-- modules/mds_new_vnet/README.md | 4 ++-- .../single_gateway_existing_vnet/README.md | 4 ++-- modules/single_gateway_new_vnet/README.md | 4 ++-- modules/vmss_existing_vnet/README.md | 4 ++-- modules/vmss_new_vnet/README.md | 4 ++-- 11 files changed, 27 insertions(+), 35 deletions(-) diff --git a/modules/common/variables.tf b/modules/common/variables.tf index 492ba1b..3bd7088 100755 --- a/modules/common/variables.tf +++ b/modules/common/variables.tf @@ -184,21 +184,13 @@ variable "vm_size" { } locals {// locals for 'vm_size' allowed values - allowed_vm_sizes = ["Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", - "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", - "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", - "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", - "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", - "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", - "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", - "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", - "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", - "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", - "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", - "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", - "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", - "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", - "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5" +allowed_vm_sizes = ["Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", + "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", + "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5", + "Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", + "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", + "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", + "Standard_D32ds_v5" ] // will fail if [var.vm_size] is invalid: validate_vm_size_value = index(local.allowed_vm_sizes, var.vm_size) diff --git a/modules/high_availability_existing_vnet/README.md b/modules/high_availability_existing_vnet/README.md index 1af448f..81538f3 100755 --- a/modules/high_availability_existing_vnet/README.md +++ b/modules/high_availability_existing_vnet/README.md @@ -40,7 +40,7 @@ module "example_module" { smart_1_cloud_token_a = "xxxxxxxxxxxx" smart_1_cloud_token_b = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -107,7 +107,7 @@ module "example_module" { | **smart_1_cloud_token_a** | Smart-1 Cloud token to connect automatically ***Member A*** to Check Point's Security Management as a Service. Follow these instructions to connect this member. | string | A valid token copied from the Connect Gateway screen in Smart-1 Cloud portal
| | **smart_1_cloud_token_b** | Smart-1 Cloud token to connect automatically ***Member B*** to Check Point's Security Management as a Service. Follow these instructions to connect this member. | string | A valid token copied from the Connect Gateway screen in Smart-1 Cloud portal
| | **sic_key** | The Secure Internal Communication one-time secret used to set up trust between the cluster object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long
| -| **vm_size** | Specifies the size of Virtual Machine | string | Various valid sizes (e.g., "Standard_DS2_v2", "Standard_D4s_v3", etc.)
| +| **vm_size** | Specifies the size of Virtual Machine | string | Various valid sizes (e.g., "Standard_D4ds_v5", "Standard_D8ds_v5", etc.)
| | **disk_size** | Storage data disk size (GB) | string | A number in the range 100 - 3995 (GB)
| | **vm_os_sku** | A SKU of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license
| | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r81.10";
"check-point-cg-r81.20";
"check-point-cg-r82";
| diff --git a/modules/high_availability_new_vnet/README.md b/modules/high_availability_new_vnet/README.md index 55f448d..fcbea2c 100755 --- a/modules/high_availability_new_vnet/README.md +++ b/modules/high_availability_new_vnet/README.md @@ -43,7 +43,7 @@ module "example_module" { smart_1_cloud_token_a = "xxxxxxxxxxxx" smart_1_cloud_token_b = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -108,7 +108,7 @@ module "example_module" { | **smart_1_cloud_token_a** | Smart-1 Cloud token to connect automatically ***Member A*** to Check Point's Security Management as a Service. | string | A valid token copied from the Connect Gateway screen in the Smart-1 Cloud portal
| | **smart_1_cloud_token_b** | Smart-1 Cloud token to connect automatically ***Member B*** to Check Point's Security Management as a Service. | string | A valid token copied from the Connect Gateway screen in the Smart-1 Cloud portal
| | **sic_key** | The Secure Internal Communication one-time secret used to set up trust between the cluster object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long
| -| **vm_size** | Specifies the size of the Virtual Machine | string | Various valid sizes (e.g., "Standard_DS2_v2", "Standard_D4s_v3", etc.)
| +| **vm_size** | Specifies the size of the Virtual Machine | string | Various valid sizes (e.g., "Standard_D4ds_v5", "Standard_D8ds_v5", etc.)
| | **disk_size** | Storage data disk size (GB) | string | A number in the range 100 - 3995 (GB)
| | **vm_os_sku** | A SKU of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license;
| | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82";
| diff --git a/modules/management_existing_vnet/README.md b/modules/management_existing_vnet/README.md index 758bc3e..bf7548f 100755 --- a/modules/management_existing_vnet/README.md +++ b/modules/management_existing_vnet/README.md @@ -37,7 +37,7 @@ module "example_module" { management_GUI_client_network = "0.0.0.0/0" mgmt_enable_api = "disable" admin_password = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "mgmt-byol" vm_os_offer = "check-point-cg-r82" @@ -71,7 +71,7 @@ module "example_module" { | **management_GUI_client_network** | Allowed GUI clients - GUI clients network CIDR | string | | | **mgmt_enable_api** | Enable api access to the management | string | "all";
"management_only";
"gui_clients";
"disable".
**Default:** "disable" | | **admin_password** | The password associated with the local administrator account on each cluster member | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. | -| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | +| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | | **disk_size** | Storage data disk size size(GB) | string | A number in the range 100 - 3995 (GB). | | **vm_os_sku** | A sku of the image to be deployed | string | "mgmt-byol" - BYOL license;
"mgmt-25" - PAYG. | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82". | diff --git a/modules/management_new_vnet/README.md b/modules/management_new_vnet/README.md index fc6ec16..b5eab0d 100755 --- a/modules/management_new_vnet/README.md +++ b/modules/management_new_vnet/README.md @@ -37,7 +37,7 @@ module "example_module" { management_GUI_client_network = "0.0.0.0/0" mgmt_enable_api = "disable" admin_password = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "mgmt-byol" vm_os_offer = "check-point-cg-r82" @@ -69,7 +69,7 @@ module "example_module" { | **management_GUI_client_network** | Allowed GUI clients - GUI clients network CIDR | string | | | **mgmt_enable_api** | Enable API access to the management | string | "all";
"management_only";
"gui_clients";
"disable";
**Default:** "disable" | | **admin_password** | The password associated with the local administrator account on each cluster member | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character
| -| **vm_size** | Specifies the size of the Virtual Machine | string | A list of valid VM sizes (e.g., "Standard_DS2_v2", "Standard_DS3_v2", etc.)
| +| **vm_size** | Specifies the size of the Virtual Machine | string | A list of valid VM sizes (e.g., "Standard_D4ds_v5", "Standard_D8ds_v5", etc.)
| | **disk_size** | Storage data disk size (GB) | string | A number in the range 100 - 3995 (GB)
| | **vm_os_sku** | A SKU of the image to be deployed | string | "mgmt-byol" - BYOL license;
"mgmt-25" - PAYG;
| | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82";
| diff --git a/modules/mds_existing_vnet/README.md b/modules/mds_existing_vnet/README.md index 584657c..dd6130e 100755 --- a/modules/mds_existing_vnet/README.md +++ b/modules/mds_existing_vnet/README.md @@ -36,7 +36,7 @@ module "example_module" { management_GUI_client_network = "0.0.0.0/0" mds_enable_api = "disable" admin_password = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "mgmt-byol" vm_os_offer = "check-point-cg-r82" @@ -76,7 +76,7 @@ module "example_module" { | **management_GUI_client_network** | Allowed GUI clients - GUI clients network CIDR | string | | | **mds_enable_api** | Enable api access to the mds | string | "all";
"management_only";
"gui_clients";
"disable".
**Default:** "disable" | | **admin_password** | The password associated with the local administrator account on the mds | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. | -| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | +| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | | **disk_size** | Storage data disk size size(GB) | string | A number in the range 100 - 3995 (GB). | | **vm_os_sku** | A sku of the image to be deployed | string | "mgmt-byol" - BYOL license;
"mgmt-25" - PAYG. | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82". | diff --git a/modules/mds_new_vnet/README.md b/modules/mds_new_vnet/README.md index c4e00ea..d33e471 100755 --- a/modules/mds_new_vnet/README.md +++ b/modules/mds_new_vnet/README.md @@ -39,7 +39,7 @@ module "example_module" { management_GUI_client_network = "0.0.0.0/0" mds_enable_api = "disable" admin_password = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "mgmt-byol" vm_os_offer = "check-point-cg-r82" @@ -78,7 +78,7 @@ module "example_module" { | **management_GUI_client_network** | Allowed GUI clients - GUI clients network CIDR | string | | | **mds_enable_api** | Enable api access to the mds | string | "all";
"management_only";
"gui_clients";
"disable".
**Default:** "disable" | | **admin_password** | The password associated with the local administrator account on the mds | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. | -| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | +| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | | **disk_size** | Storage data disk size size(GB) | string | A number in the range 100 - 3995 (GB). | | **vm_os_sku** | A sku of the image to be deployed | string | "mgmt-byol" - BYOL license;
"mgmt-25" - PAYG. | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82". | diff --git a/modules/single_gateway_existing_vnet/README.md b/modules/single_gateway_existing_vnet/README.md index c7c3f99..286c527 100755 --- a/modules/single_gateway_existing_vnet/README.md +++ b/modules/single_gateway_existing_vnet/README.md @@ -39,7 +39,7 @@ module "example_module" { admin_password = "xxxxxxxxxxxx" smart_1_cloud_token = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -84,7 +84,7 @@ module "example_module" { | **admin_password** | The password associated with the local administrator account on the gateway | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. | | **smart_1_cloud_token** | Smart-1 Cloud token to connect automatically ***Gateway*** to Check Point's Security Management as a Service.

Follow these instructions to quickly connect this member to Smart-1 Cloud - [SK180501](https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&solutionid=sk180501) | string | A valid token copied from the Connect Gateway screen in Smart-1 Cloud portal. | | **sic_key** | The Secure Internal Communication one time secret used to set up trust between the gateway object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long. | -| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | +| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | | **disk_size** | Storage data disk size size(GB) | string | A number in the range 100 - 3995 (GB). | | **vm_os_sku** | A sku of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license. | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82". | diff --git a/modules/single_gateway_new_vnet/README.md b/modules/single_gateway_new_vnet/README.md index bca04fd..6b8e149 100755 --- a/modules/single_gateway_new_vnet/README.md +++ b/modules/single_gateway_new_vnet/README.md @@ -39,7 +39,7 @@ module "example_module" { admin_password = "xxxxxxxxxxxx" smart_1_cloud_token = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "110" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -80,7 +80,7 @@ module "example_module" { | **admin_password** | The password associated with the local administrator account on the gateway | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character | | **smart_1_cloud_token** | Smart-1 Cloud token to connect automatically ***Gateway*** to Check Point's Security Management as a Service. Follow these instructions to quickly connect this member to Smart-1 Cloud | string | A valid token copied from the Connect Gateway screen in Smart-1 Cloud portal | | **sic_key** | The Secure Internal Communication one-time secret used to set up trust between the gateway object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long | -| **vm_size** | Specifies the size of Virtual Machine | string | Various valid sizes (e.g., "Standard_DS2_v2", "Standard_D4s_v3", etc.) | +| **vm_size** | Specifies the size of Virtual Machine | string | Various valid sizes (e.g., "Standard_D4ds_v5", "Standard_D8ds_v5", etc.) | | **disk_size** | Storage data disk size (GB) | string | A number in the range 100 - 3995 (GB) | | **vm_os_sku** | A SKU of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82"; | diff --git a/modules/vmss_existing_vnet/README.md b/modules/vmss_existing_vnet/README.md index a12b1b2..6f05587 100755 --- a/modules/vmss_existing_vnet/README.md +++ b/modules/vmss_existing_vnet/README.md @@ -38,7 +38,7 @@ module "example_module" { backend_lb_IP_address = 4 admin_password = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "100" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -98,7 +98,7 @@ module "example_module" { | **backend_lb_IP_address** | Is a whole number that can be represented as a binary integer with no more than the number of digits remaining in the address after the given prefix | string | Starting from 5-th IP address in a subnet. For example: subnet - 10.0.1.0/24, backend_lb_IP_address = 4 , the LB IP is 10.0.1.4. | | **admin_password** | The password associated with the local administrator account on each cluster member | string | Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. | | **sic_key** | The Secure Internal Communication one time secret used to set up trust between the cluster object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long. | -| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_DS2_v2", "Standard_DS3_v2", "Standard_DS4_v2", "Standard_DS5_v2", "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_D4s_v3", "Standard_D8s_v3", "Standard_D16s_v3", "Standard_D32s_v3", "Standard_D64s_v3", "Standard_E4s_v3", "Standard_E8s_v3", "Standard_E16s_v3", "Standard_E20s_v3", "Standard_E32s_v3", "Standard_E64s_v3", "Standard_E64is_v3", "Standard_F4s_v2", "Standard_F8s_v2", "Standard_F16s_v2", "Standard_F32s_v2", "Standard_F64s_v2", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_D2_v2", "Standard_D3_v2", "Standard_D4_v2", "Standard_D5_v2", "Standard_D11_v2", "Standard_D12_v2", "Standard_D13_v2", "Standard_D14_v2", "Standard_D15_v2", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D4_v3", "Standard_D8_v3", "Standard_D16_v3", "Standard_D32_v3", "Standard_D64_v3", "Standard_E4_v3", "Standard_E8_v3", "Standard_E16_v3", "Standard_E20_v3", "Standard_E32_v3", "Standard_E64_v3", "Standard_E64i_v3", "Standard_DS11_v2", "Standard_DS12_v2", "Standard_DS13_v2", "Standard_DS14_v2", "Standard_DS15_v2", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | +| **vm_size** | Specifies the size of Virtual Machine | string | "Standard_F2s", "Standard_F4s", "Standard_F8s", "Standard_F16s", "Standard_M8ms", "Standard_M16ms", "Standard_M32ms", "Standard_M64ms", "Standard_M64s", "Standard_F2", "Standard_F4", "Standard_F8", "Standard_F16", "Standard_D2_v5", "Standard_D4_v5", "Standard_D8_v5", "Standard_D16_v5","Standard_D32_v5", "Standard_D2s_v5", "Standard_D4s_v5", "Standard_D8s_v5", "Standard_D16s_v5", "Standard_D2d_v5", "Standard_D4d_v5", "Standard_D8d_v5", "Standard_D16d_v5", "Standard_D32d_v5", "Standard_D2ds_v5", "Standard_D4ds_v5", "Standard_D8ds_v5", "Standard_D16ds_v5", "Standard_D32ds_v5". | | **disk_size** | Storage data disk size size(GB) must be 100 for versions R81.20 and below | string | A number in the range 100 - 3995 (GB).
**Default:** 100 | | **vm_os_sku** | A sku of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license. | | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82". | diff --git a/modules/vmss_new_vnet/README.md b/modules/vmss_new_vnet/README.md index 09a2cf7..6a23897 100755 --- a/modules/vmss_new_vnet/README.md +++ b/modules/vmss_new_vnet/README.md @@ -42,7 +42,7 @@ module "example_module" { backend_lb_IP_address = 4 admin_password = "xxxxxxxxxxxx" sic_key = "xxxxxxxxxxxx" - vm_size = "Standard_D3_v2" + vm_size = "Standard_D4ds_v5" disk_size = "100" vm_os_sku = "sg-byol" vm_os_offer = "check-point-cg-r82" @@ -97,7 +97,7 @@ module "example_module" { | **backend_lb_IP_address** | A whole number that can be represented as a binary integer with no more than the number of digits remaining in the address after the given prefix | number | Starting from the 5th IP address in a subnet. For example: subnet - 10.0.1.0/24, backend_lb_IP_address = 4, the LB IP is 10.0.1.4
| | **admin_password** | The password associated with the local administrator account on each cluster member | string | Password must have 3 of the following: 1 lowercase character, 1 uppercase character, 1 number, and 1 special character
| | **sic_key** | The Secure Internal Communication one-time secret used to set up trust between the cluster object and the management server | string | Only alphanumeric characters are allowed, and the value must be 12-30 characters long
| -| **vm_size** | Specifies the size of Virtual Machine | string | A list of valid VM sizes, e.g., "Standard_DS2_v2", "Standard_D4s_v3", "Standard_D64s_v3", etc.
| +| **vm_size** | Specifies the size of Virtual Machine | string | A list of valid VM sizes, e.g., "Standard_D4ds_v5", "Standard_D8ds_v5", etc.
| | **disk_size** | Storage data disk size (GB) must be 100 for versions R81.20 and below | string | A number in the range 100 - 3995 (GB)
**Default:** 100 | | **vm_os_sku** | A SKU of the image to be deployed | string | "sg-byol" - BYOL license;
"sg-ngtp" - NGTP PAYG license;
"sg-ngtx" - NGTX PAYG license;
| | **vm_os_offer** | The name of the image offer to be deployed | string | "check-point-cg-r8110";
"check-point-cg-r8120";
"check-point-cg-r82";
|