Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variable "os_version" {
}
variable "management_nic" {
type = string
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)."
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)."
default = "Ephemeral Public IP (eth0)"
}
variable "management_name" {
Expand Down
2 changes: 1 addition & 1 deletion modules/network-security-integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Leave an empty list for a protocol if you want to disable traffic for it.
| license | Check Point license (BYOL). | string | BYOL <br/> | "BYOL" | no |
| image_name | The NSI image name (for example, check-point-r8120-gw-byol-nsi-631-991001866-v20250731). | string | N/A | N/A | yes |
| os_version | Gaia OS Version | string | R8110;<br/> R8120;<br/> R82; | "R8120" | yes
| 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 |
| 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 |
| 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 |
| 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 |
| generate_password | Automatically generate an administrator password. | bool | true <br/>false | false | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/network-security-integration/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ variable "os_version" {
}
variable "management_nic" {
type = string
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)."
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)."
default = "Ephemeral Public IP (eth0)"
validation {
condition = contains(["Ephemeral Public IP (eth0)", "Private IP (eth0)"], var.management_nic)
Expand Down
Loading