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
22 changes: 22 additions & 0 deletions modules/nva_into_existing_hub/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,25 @@ variable "tags" {
type = map(map(string))
default = {}
}

variable "plan_product" {
description = "Use the following plan when deploying with terraform: cp-vwan-managed-app"
type = string
default = "cp-vwan-managed-app"
}

variable "plan_version" {
description = "Use the latest version of the managed application (e.g., 1.0.23) for best results. Full version list: https://support.checkpoint.com/results/sk/sk132192"
type = string
default = "1.0.23"
}

variable "custom_license_type" {
description = "License type when using staged image."
type = string
default = ""
validation {
condition = contains(["", "ngtp", "ngtx", "premium"], var.custom_license_type)
error_message = "Valid options are 'ngtp', 'ngtx', or 'premium' or empty."
}
}
22 changes: 22 additions & 0 deletions modules/nva_into_new_vwan/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,25 @@ variable "tags" {
type = map(map(string))
default = {}
}

variable "plan_product" {
description = "Use the following plan when deploying with terraform: cp-vwan-managed-app"
type = string
default = "cp-vwan-managed-app"
}

variable "plan_version" {
description = "Use the latest version of the managed application (e.g., 1.0.23) for best results. Full version list: https://support.checkpoint.com/results/sk/sk132192"
type = string
default = "1.0.23"
}

variable "custom_license_type" {
description = "License type when using staged image."
type = string
default = ""
validation {
condition = contains(["", "ngtp", "ngtx", "premium"], var.custom_license_type)
error_message = "Valid options are 'ngtp', 'ngtx', or 'premium' or empty."
}
}