Skip to content

Commit 6cc882d

Browse files
Add provision docs and reference VSECNSX-1932 (#9)
Co-authored-by: eviatars <eviatars@checkpoint.com>
1 parent 5a43a32 commit 6cc882d

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

modules/management/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module "management" {
6060
- `num_cpus`: (Optional) Number of CPUs for the Security Management.
6161
- `num_cores_per_socket`: (Optional) Number of cores per socket for the Security Management.
6262
- `memory`: (Optional) Memory size for the Security Management in MB.
63-
- `provision`: (Optional) Provision type (thin, flat, thick).
63+
- `provision`: (Optional) Types of disk provisioning that can be set for the disk in the deployed OVF package, [reference](https://developer.broadcom.com/xapis/vsan-management-api/8.0U3/vim.OvfManager.CreateImportSpecParams.DiskProvisioningType.html).
6464
- `primary_dns`: (Optional) Primary DNS server.
6565
- `proxy_port`: (Optional) Port of the proxy server.
6666
- `proxy_address`: (Optional) Address of the proxy server.

modules/management/variables.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,6 @@ variable "memory" {
6666
variable "provision" {
6767
type = string
6868
default = "thin"
69-
validation {
70-
condition = var.provision == "thin" || var.provision == "flat" || var.provision == "thick"
71-
error_message = "The provision value must be one of thin, flat, thick"
72-
}
7369
}
7470

7571
variable "ssh_key" {

modules/single-gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module "single_gateway" {
6666
- `num_cores_per_socket`: (Optional) Number of cores per socket for the Security Gateway. Using OVF properties by
6767
default.
6868
- `memory`: (Optional) Memory size for the Security Gateway in MB. Using OVF properties by default.
69-
- `provision`: (Optional) Provision type (thin, flat, thick).
69+
- `provision`: (Optional) Types of disk provisioning that can be set for the disk in the deployed OVF package, [reference](https://developer.broadcom.com/xapis/vsan-management-api/8.0U3/vim.OvfManager.CreateImportSpecParams.DiskProvisioningType.html).
7070
- `primary_dns`: (Optional) Primary DNS server.
7171
- `ntp_primary`: (Optional) Primary NTP server.
7272
- `ntp_primary_version`: (Optional) Version of the primary NTP server. Default is `4`.

modules/single-gateway/variables.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ variable "ssh_key" {
7171
variable "provision" {
7272
type = string
7373
default = "thin"
74-
validation {
75-
condition = var.provision == "thin" || var.provision == "flat" || var.provision == "thick"
76-
error_message = "The provision value must be one of thin, flat, thick"
77-
}
7874
}
7975

8076
//********************** Gateway Configurations ************************//

0 commit comments

Comments
 (0)