File tree Expand file tree Collapse file tree 14 files changed +18
-18
lines changed Expand file tree Collapse file tree 14 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ output "template_name"{
30
30
value = var. template_name
31
31
}
32
32
33
- output "template_version " {
34
- value = var. template_version
33
+ output "module_version " {
34
+ value = var. module_version
35
35
}
36
36
37
37
output "bootstrap_script" {
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ variable "template_name"{
118
118
type = string
119
119
}
120
120
121
- variable "template_version " {
121
+ variable "module_version " {
122
122
description = " Template name. Should be defined according to deployment type(e.g. ha, vmss)"
123
123
type = string
124
124
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ provider "azurerm" {
26
26
module "example_module" {
27
27
28
28
source = "CheckPointSW/cloudguard-network-security/azure//modules/management_new_vnet"
29
- version = "1.0.2 "
29
+ version = "1.0.3 "
30
30
31
31
source_image_vhd_uri = "noCustomUri"
32
32
resource_group_name = "checkpoint-mgmt-terraform"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ installationType="${installation_type}"
4
4
allowUploadDownload = "${allow_upload_download}"
5
5
osVersion = "${os_version}"
6
6
templateName = "${template_name}"
7
- templateVersion = "${template_version }"
7
+ templateVersion = "${module_version }"
8
8
templateType = "${template_type}"
9
9
isBlink = "${is_blink}"
10
10
bootstrapScript64 = "${bootstrap_script64}"
Original file line number Diff line number Diff line change 1
1
locals {
2
2
template_name = " mgmt_terraform_registry"
3
- version = " 1.0.2 "
3
+ module_version = " 1.0.3 "
4
4
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module "common" {
6
6
admin_password = var. admin_password
7
7
installation_type = var. installation_type
8
8
template_name = local. template_name
9
- template_version = local. template_version
9
+ module_version = local. module_version
10
10
number_of_vm_instances = 1
11
11
allow_upload_download = var. allow_upload_download
12
12
vm_size = var. vm_size
@@ -263,7 +263,7 @@ resource "azurerm_virtual_machine" "mgmt-vm-instance" {
263
263
allow_upload_download = module.common.allow_upload_download
264
264
os_version = module.common.os_version
265
265
template_name = module.common.template_name
266
- template_version = module.common.template_version
266
+ module_version = module.common.module_version
267
267
template_type = " terraform"
268
268
is_blink = module.common.is_blink
269
269
bootstrap_script64 = base64encode (var. bootstrap_script )
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ provider "azurerm" {
25
25
module "example_module" {
26
26
27
27
source = "CheckPointSW/cloudguard-network-security/azure//modules/single_gateway_new_vnet"
28
- version = "1.0.2 "
28
+ version = "1.0.3 "
29
29
30
30
source_image_vhd_uri = "noCustomUri"
31
31
resource_group_name = "checkpoint-single-gw-terraform"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ installationType="${installation_type}"
4
4
allowUploadDownload = "${allow_upload_download}"
5
5
osVersion = "${os_version}"
6
6
templateName = "${template_name}"
7
- templateVersion = "${template_version }"
7
+ templateVersion = "${module_version }"
8
8
templateType = "${template_type}"
9
9
isBlink = "${is_blink}"
10
10
bootstrapScript64 = "${bootstrap_script64}"
Original file line number Diff line number Diff line change 1
1
locals {
2
2
template_name = " single_terraform_registry"
3
- version = " 1.0.2 "
3
+ module_version = " 1.0.3 "
4
4
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module "common" {
6
6
admin_password = var. admin_password
7
7
installation_type = var. installation_type
8
8
template_name = local. template_name
9
- template_version = local. version
9
+ module_version = local. module_version
10
10
number_of_vm_instances = 1
11
11
allow_upload_download = var. allow_upload_download
12
12
vm_size = var. vm_size
@@ -188,7 +188,7 @@ resource "azurerm_virtual_machine" "single-gateway-vm-instance" {
188
188
allow_upload_download = module.common.allow_upload_download
189
189
os_version = module.common.os_version
190
190
template_name = module.common.template_name
191
- template_version = module.common.template_version
191
+ module_version = module.common.module_version
192
192
template_type = " terraform"
193
193
is_blink = module.common.is_blink
194
194
bootstrap_script64 = base64encode (var. bootstrap_script )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ provider "azurerm" {
29
29
module "example_module" {
30
30
31
31
source = "CheckPointSW/cloudguard-network-security/azure//modules/vmss_new_vnet"
32
- version = "1.0.2 "
32
+ version = "1.0.3 "
33
33
34
34
subscription_id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
35
35
source_image_vhd_uri = "noCustomUri"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ installationType="${installation_type}"
4
4
allowUploadDownload = "${allow_upload_download}"
5
5
osVersion = "${os_version}"
6
6
templateName = "${template_name}"
7
- templateVersion = "${template_version }"
7
+ templateVersion = "${module_version }"
8
8
templateType = "${template_type}"
9
9
isBlink = "${is_blink}"
10
10
bootstrapScript64 = "${bootstrap_script64}"
Original file line number Diff line number Diff line change 1
1
locals {
2
2
template_name = " vmss_terraform_registry"
3
- version = " 1.0.2 "
3
+ module_version = " 1.0.3 "
4
4
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module "common" {
6
6
admin_password = var. authentication_type == " SSH Public Key" ? random_id. random_id . hex : var. admin_password
7
7
installation_type = var. installation_type
8
8
template_name = local. template_name
9
- template_version = local. template_version
9
+ module_version = local. module_version
10
10
number_of_vm_instances = var. number_of_vm_instances
11
11
allow_upload_download = var. allow_upload_download
12
12
vm_size = var. vm_size
@@ -257,7 +257,7 @@ resource "azurerm_linux_virtual_machine_scale_set" "vmss" {
257
257
allow_upload_download = module.common.allow_upload_download
258
258
os_version = module.common.os_version
259
259
template_name = module.common.template_name
260
- template_version = module.common.template_version
260
+ module_version = module.common.module_version
261
261
template_type = " terraform"
262
262
is_blink = module.common.is_blink
263
263
bootstrap_script64 = base64encode (var. bootstrap_script )
You can’t perform that action at this time.
0 commit comments