Skip to content

Commit c601d8d

Browse files
fix(VSECPC-11449): Updated management_nic variable description for accuracy and clarity (#8)
Co-authored-by: natanelm <natanelm@checkpoint.com>
1 parent a8f0dca commit c601d8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/common/network-security-integration-common/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ variable "os_version" {
4040
}
4141
variable "management_nic" {
4242
type = string
43-
description = "Management Interface - Autoscaling Security Gateways in GCP can be managed by an ephemeral public IP or using the private IP of the internal interface (eth1)."
43+
description = "Management Interface - Autoscaling Security Gateways in GCP can be managed by the ephemeral public IP or by the private IP of the Management interface (eth0)."
4444
default = "Ephemeral Public IP (eth0)"
4545
}
4646
variable "management_name" {

modules/network-security-integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Leave an empty list for a protocol if you want to disable traffic for it.
231231
| license | Check Point license (BYOL). | string | BYOL <br/> | "BYOL" | no |
232232
| image_name | The NSI image name (for example, check-point-r8120-gw-byol-nsi-631-991001866-v20250731). | string | N/A | N/A | yes |
233233
| os_version | Gaia OS Version | string | R8110;<br/> R8120;<br/> R82; | "R8120" | yes
234-
| management_nic | Management Interface - Autoscaling Security Gateways in GCP can be managed by an ephemeral public IP or using the private IP of the internal interface (eth1). | string | Ephemeral Public IP (eth0) <br/> Private IP (eth1) | "Ephemeral Public IP (eth0)" | no |
234+
| management_nic | Management Interface - Autoscaling Security Gateways in GCP can be managed by the ephemeral public IP or by the private IP of the Management interface (eth0). | string | Ephemeral Public IP (eth0) <br/> Private IP (eth0) | "Ephemeral Public IP (eth0)" | no |
235235
| management_name | The name of the Security Management Server as it appears in the autoprovisioning configuration. (Enter a valid Security Management name including lowercase letters, digits and hyphens only). | string | N/A | "checkpoint-management" | no |
236236
| configuration_template_name | Specify the provisioning configuration template name (for autoprovisioning). (Enter a valid autoprovisioning configuration template name including lowercase letters, digits, and hyphens only). | string | N/A | "gcp-asg-autoprov-tmplt" | no |
237237
| generate_password | Automatically generate an administrator password. | bool | true <br/>false | false | no |

modules/network-security-integration/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ variable "os_version" {
4848
}
4949
variable "management_nic" {
5050
type = string
51-
description = "Management Interface - Autoscaling Security Gateways in GCP can be managed by an ephemeral public IP or using the private IP of the internal interface (eth1)."
51+
description = "Management Interface - Autoscaling Security Gateways in GCP can be managed by the ephemeral public IP or by the private IP of the Management interface (eth0)."
5252
default = "Ephemeral Public IP (eth0)"
5353
validation {
5454
condition = contains(["Ephemeral Public IP (eth0)", "Private IP (eth0)"], var.management_nic)

0 commit comments

Comments
 (0)