Skip to content

Commit ffd8ba5

Browse files
chore(deps): update terraform-module (#1008)
--------- Co-authored-by: surajsbharadwaj <suraj.bharadwaj@ibm.com>
1 parent 707cc47 commit ffd8ba5

File tree

9 files changed

+23
-10
lines changed

9 files changed

+23
-10
lines changed

ibm_catalog.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,10 @@
347347
},
348348
{
349349
"key": "certificate_template_name"
350+
},
351+
{
352+
"key": "IC_SCHEMATICS_WORKSPACE_ID",
353+
"hidden": true
350354
}
351355
],
352356
"outputs": [
@@ -973,6 +977,10 @@
973977
},
974978
{
975979
"key": "certificate_template_name"
980+
},
981+
{
982+
"key": "IC_SCHEMATICS_WORKSPACE_ID",
983+
"hidden": true
976984
}
977985
],
978986
"outputs": [
@@ -1342,7 +1350,8 @@
13421350
}
13431351
},
13441352
{
1345-
"key": "tags"
1353+
"key": "IC_SCHEMATICS_WORKSPACE_ID",
1354+
"hidden": true
13461355
}
13471356
],
13481357
"outputs": [
@@ -1689,6 +1698,10 @@
16891698
},
16901699
{
16911700
"key": "tags"
1701+
},
1702+
{
1703+
"key": "IC_SCHEMATICS_WORKSPACE_ID",
1704+
"hidden": true
16921705
}
16931706
],
16941707
"outputs": [

modules/powervs-vpc-landing-zone/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ Creates VPC Landing Zone | Performs VPC VSI OS Config | Creates PowerVS Infrastr
106106

107107
| Name | Source | Version |
108108
|------|--------|---------|
109-
| <a name="module_client_to_site_vpn"></a> [client\_to\_site\_vpn](#module\_client\_to\_site\_vpn) | terraform-ibm-modules/client-to-site-vpn/ibm | 2.1.2 |
109+
| <a name="module_client_to_site_vpn"></a> [client\_to\_site\_vpn](#module\_client\_to\_site\_vpn) | terraform-ibm-modules/client-to-site-vpn/ibm | 2.1.3 |
110110
| <a name="module_configure_monitoring_host"></a> [configure\_monitoring\_host](#module\_configure\_monitoring\_host) | ./submodules/ansible | n/a |
111111
| <a name="module_configure_network_services"></a> [configure\_network\_services](#module\_configure\_network\_services) | ./submodules/ansible | n/a |
112-
| <a name="module_landing_zone"></a> [landing\_zone](#module\_landing\_zone) | terraform-ibm-modules/landing-zone/ibm//patterns//vsi//module | 7.0.2 |
112+
| <a name="module_landing_zone"></a> [landing\_zone](#module\_landing\_zone) | terraform-ibm-modules/landing-zone/ibm//patterns//vsi//module | 7.2.2 |
113113
| <a name="module_powervs_workspace"></a> [powervs\_workspace](#module\_powervs\_workspace) | terraform-ibm-modules/powervs-workspace/ibm | 2.5.0 |
114114
| <a name="module_private_secret_engine"></a> [private\_secret\_engine](#module\_private\_secret\_engine) | terraform-ibm-modules/secrets-manager-private-cert-engine/ibm | 1.3.5 |
115115
| <a name="module_secrets_manager_group"></a> [secrets\_manager\_group](#module\_secrets\_manager\_group) | terraform-ibm-modules/secrets-manager-secret-group/ibm | 1.2.2 |

modules/powervs-vpc-landing-zone/client2sitevpn.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ module "secrets_manager_private_certificate" {
122122
# Create client to site VPN Server
123123
module "client_to_site_vpn" {
124124
source = "terraform-ibm-modules/client-to-site-vpn/ibm"
125-
version = "2.1.2"
125+
version = "2.1.3"
126126
providers = { ibm = ibm.ibm-is }
127127
count = var.client_to_site_vpn.enable ? 1 : 0
128128

modules/powervs-vpc-landing-zone/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "landing_zone" {
66
source = "terraform-ibm-modules/landing-zone/ibm//patterns//vsi//module"
7-
version = "7.0.2"
7+
version = "7.2.2"
88
providers = { ibm = ibm.ibm-is }
99

1010
ssh_public_key = var.ssh_public_key

solutions/standard-plus-vsi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ No resources.
9292
| <a name="input_ssh_public_key"></a> [ssh\_public\_key](#input\_ssh\_public\_key) | Public SSH Key for VSI creation. Must be an RSA key with a key size of either 2048 bits or 4096 bits (recommended). Must be a valid SSH key that does not already exist in the deployment region. | `string` | n/a | yes |
9393
| <a name="input_tags"></a> [tags](#input\_tags) | List of tag names for the IBM Cloud PowerVS workspace | `list(string)` | `[]` | no |
9494
| <a name="input_tshirt_size"></a> [tshirt\_size](#input\_tshirt\_size) | PowerVS instance profiles. These profiles can be overridden by specifying 'custom\_profile\_instance\_boot\_image' and 'custom\_profile' values in optional parameters. | <pre>object({<br/> tshirt_size = string<br/> image = string<br/> })</pre> | n/a | yes |
95-
| <a name="input_vpc_intel_images"></a> [vpc\_intel\_images](#input\_vpc\_intel\_images) | Stock OS image names for creating VPC landing zone VSI instances: RHEL (management and network services) and SLES (monitoring). | <pre>object({<br/> rhel_image = string<br/> sles_image = string<br/> })</pre> | <pre>{<br/> "rhel_image": "ibm-redhat-9-4-amd64-sap-applications-3",<br/> "sles_image": "ibm-sles-15-5-amd64-sap-applications-4"<br/>}</pre> | no |
95+
| <a name="input_vpc_intel_images"></a> [vpc\_intel\_images](#input\_vpc\_intel\_images) | Stock OS image names for creating VPC landing zone VSI instances: RHEL (management and network services) and SLES (monitoring). | <pre>object({<br/> rhel_image = string<br/> sles_image = string<br/> })</pre> | <pre>{<br/> "rhel_image": "ibm-redhat-9-4-amd64-sap-applications-4",<br/> "sles_image": "ibm-sles-15-5-amd64-sap-applications-4"<br/>}</pre> | no |
9696

9797
### Outputs
9898

solutions/standard-plus-vsi/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ variable "vpc_intel_images" {
7575
sles_image = string
7676
})
7777
default = {
78-
"rhel_image" : "ibm-redhat-9-4-amd64-sap-applications-3"
78+
"rhel_image" : "ibm-redhat-9-4-amd64-sap-applications-4"
7979
"sles_image" : "ibm-sles-15-5-amd64-sap-applications-4"
8080
}
8181
}

solutions/standard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ No resources.
9292
| <a name="input_ssh_public_key"></a> [ssh\_public\_key](#input\_ssh\_public\_key) | Public SSH Key for VSI creation. Must be an RSA key with a key size of either 2048 bits or 4096 bits (recommended). Must be a valid SSH key that does not already exist in the deployment region. | `string` | n/a | yes |
9393
| <a name="input_tags"></a> [tags](#input\_tags) | List of tag names for the IBM Cloud PowerVS workspace | `list(string)` | `[]` | no |
9494
| <a name="input_transit_gateway_global"></a> [transit\_gateway\_global](#input\_transit\_gateway\_global) | Connect to the networks outside the associated region. | `bool` | `false` | no |
95-
| <a name="input_vpc_intel_images"></a> [vpc\_intel\_images](#input\_vpc\_intel\_images) | Stock OS image names for creating VPC landing zone VSI instances: RHEL (management and network services) and SLES (monitoring). | <pre>object({<br/> rhel_image = string<br/> sles_image = string<br/> })</pre> | <pre>{<br/> "rhel_image": "ibm-redhat-9-4-amd64-sap-applications-3",<br/> "sles_image": "ibm-sles-15-5-amd64-sap-applications-4"<br/>}</pre> | no |
95+
| <a name="input_vpc_intel_images"></a> [vpc\_intel\_images](#input\_vpc\_intel\_images) | Stock OS image names for creating VPC landing zone VSI instances: RHEL (management and network services) and SLES (monitoring). | <pre>object({<br/> rhel_image = string<br/> sles_image = string<br/> })</pre> | <pre>{<br/> "rhel_image": "ibm-redhat-9-4-amd64-sap-applications-4",<br/> "sles_image": "ibm-sles-15-5-amd64-sap-applications-4"<br/>}</pre> | no |
9696

9797
### Outputs
9898

solutions/standard/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ variable "vpc_intel_images" {
7676
sles_image = string
7777
})
7878
default = {
79-
"rhel_image" : "ibm-redhat-9-4-amd64-sap-applications-3"
79+
"rhel_image" : "ibm-redhat-9-4-amd64-sap-applications-4"
8080
"sles_image" : "ibm-sles-15-5-amd64-sap-applications-4"
8181
}
8282
}

0 commit comments

Comments
 (0)