Skip to content

Commit da5dfa5

Browse files
chore(deps): update dependencies (#718)
1 parent 9340abb commit da5dfa5

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ An IBM Provider [issue](https://github.com/IBM-Cloud/terraform-provider-ibm/issu
2424
* [Submodules](./modules)
2525
* [reserved-ips](./modules/reserved-ips)
2626
* [Examples](./examples)
27-
* [Advanced dedicated service VPE gateway](./examples/advanced)
28-
* [Basic multi-tenant VPE gateway](./examples/basic)
29-
* [Every supported multi-tenant ("provider_cloud_service") VPE gateway](./examples/every-multi-tenant-svc)
30-
* [Existing Reserved IPs example](./examples/reserved-ips)
31-
* [Multi-tenant IBM Cloud Monitoring in Montreal VPE gateway](./examples/montreal-monitoring)
27+
* <div style="display: inline-block;"><a href="./examples/advanced">Advanced dedicated service VPE gateway</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=vg-advanced-example&repository=github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway/tree/main/examples/advanced" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
28+
* <div style="display: inline-block;"><a href="./examples/basic">Basic multi-tenant VPE gateway</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=vg-basic-example&repository=github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway/tree/main/examples/basic" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
29+
* <div style="display: inline-block;"><a href="./examples/every-multi-tenant-svc">Every supported multi-tenant ("provider_cloud_service") VPE gateway</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=vg-every-multi-tenant-svc-example&repository=github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway/tree/main/examples/every-multi-tenant-svc" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
30+
* <div style="display: inline-block;"><a href="./examples/montreal-monitoring">Multi-tenant IBM Cloud Monitoring in Montreal VPE gateway</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=vg-montreal-monitoring-example&repository=github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway/tree/main/examples/montreal-monitoring" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
31+
* <div style="display: inline-block;"><a href="./examples/reserved-ips">Existing Reserved IPs example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=vg-reserved-ips-example&repository=github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway/tree/main/examples/reserved-ips" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
3232
* [Contributing](#contributing)
3333
<!-- END OVERVIEW HOOK -->
3434

examples/advanced/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
module "vpc" {
1818
count = var.vpc_id != null ? 0 : 1
1919
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
20-
version = "8.7.0"
20+
version = "8.8.4"
2121
resource_group_id = module.resource_group.resource_group_id
2222
region = var.region
2323
prefix = var.prefix
@@ -63,7 +63,7 @@ module "vpe_security_group" {
6363

6464
module "postgresql_db" {
6565
source = "terraform-ibm-modules/icd-postgresql/ibm"
66-
version = "4.2.27"
66+
version = "4.2.30"
6767
resource_group_id = module.resource_group.resource_group_id
6868
name = "${var.prefix}-vpe-pg"
6969
region = var.region

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "vpc" {
1818
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
19-
version = "8.7.0"
19+
version = "8.8.4"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
prefix = var.prefix

examples/every-multi-tenant-svc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "vpc" {
1818
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
19-
version = "8.7.0"
19+
version = "8.8.4"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
prefix = var.prefix

examples/montreal-monitoring/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "vpc" {
1818
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
19-
version = "8.7.0"
19+
version = "8.8.4"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
prefix = var.prefix

examples/reserved-ips/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
module "vpc" {
1818
count = var.vpc_id != null ? 0 : 1
1919
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
20-
version = "8.7.0"
20+
version = "8.8.4"
2121
resource_group_id = module.resource_group.resource_group_id
2222
region = var.region
2323
prefix = var.prefix

tests/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "vpc" {
1818
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
19-
version = "8.7.0"
19+
version = "8.8.4"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
prefix = var.prefix

tests/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module github.com/terraform-ibm-modules/terraform-ibm-vpe-gateway
22

33
go 1.24.0
44

5-
toolchain go1.25.3
5+
toolchain go1.25.4
66

77
require (
8-
github.com/gruntwork-io/terratest v0.51.0
8+
github.com/gruntwork-io/terratest v0.52.0
99
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.20
1111
)
1212

1313
require (
@@ -16,7 +16,7 @@ require (
1616
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
1717
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
1818
github.com/IBM/go-sdk-core/v5 v5.21.0 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.89.0 // indirect
19+
github.com/IBM/platform-services-go-sdk v0.90.0 // indirect
2020
github.com/IBM/project-go-sdk v0.3.9 // indirect
2121
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2222
github.com/IBM/vpc-go-sdk v1.0.2 // indirect

tests/go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ github.com/IBM/cloud-databases-go-sdk v0.8.1/go.mod h1:JYucI1PdwqbAd8XGdDAchxzxR
99
github.com/IBM/go-sdk-core/v5 v5.9.2/go.mod h1:YlOwV9LeuclmT/qi/LAK2AsobbAP42veV0j68/rlZsE=
1010
github.com/IBM/go-sdk-core/v5 v5.21.0 h1:DUnYhvC4SoC8T84rx5omnhY3+xcQg/Whyoa3mDPIMkk=
1111
github.com/IBM/go-sdk-core/v5 v5.21.0/go.mod h1:Q3BYO6iDA2zweQPDGbNTtqft5tDcEpm6RTuqMlPcvbw=
12-
github.com/IBM/platform-services-go-sdk v0.89.0 h1:fIvKR1bQchPoMUXQf69gaRKak/giVAkRDISiAX8TlE8=
13-
github.com/IBM/platform-services-go-sdk v0.89.0/go.mod h1:aGD045m6I8pfcB77wft8w2cHqWOJjcM3YSSV55BX0Js=
12+
github.com/IBM/platform-services-go-sdk v0.90.0 h1:hsUkgZZBGYK+szFb0tF9Q7uy1VjMY+VlYAPgPwFPMrg=
13+
github.com/IBM/platform-services-go-sdk v0.90.0/go.mod h1:aGD045m6I8pfcB77wft8w2cHqWOJjcM3YSSV55BX0Js=
1414
github.com/IBM/project-go-sdk v0.3.9 h1:D/UfMMn+vMQyvYf9EfocV6HrD3HcVpeIVoUSjNKuROo=
1515
github.com/IBM/project-go-sdk v0.3.9/go.mod h1:FOJM9ihQV3EEAY6YigcWiTNfVCThtdY8bLC/nhQHFvo=
1616
github.com/IBM/schematics-go-sdk v0.4.0 h1:x01f/tPquYJYLQzJLGuxWfCbV/EdSMXRikOceNy/JLM=
@@ -149,8 +149,8 @@ github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
149149
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
150150
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
151151
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
152-
github.com/gruntwork-io/terratest v0.51.0 h1:RCXlCwWlHqhUoxgF6n3hvywvbvrsTXqoqt34BrnLekw=
153-
github.com/gruntwork-io/terratest v0.51.0/go.mod h1:evZHXb8VWDgv5O5zEEwfkwMhkx9I53QR/RB11cISrpg=
152+
github.com/gruntwork-io/terratest v0.52.0 h1:7+I3FqEImowIajZ9Qyo5ngr7n2AUINJko6x+KzlWNjU=
153+
github.com/gruntwork-io/terratest v0.52.0/go.mod h1:y2Evi+Ac04QpzF3mbRPqrBjipDN7gjqlw6+OZoy2vX4=
154154
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
155155
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
156156
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -296,8 +296,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
296296
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
297297
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
298298
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
299-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17 h1:unGRxvM9OJBTsfDQg/AZCYOeJZ5TqrCsPphjWJ2wI94=
300-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17/go.mod h1:g0kmBhFk6pVoTmse42tMNCSNktiOYJHAda/pAzOIxco=
299+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.20 h1:jESkPVhbtjVGnZFEg227spKiA+p0nAA4pslMmA8OhYw=
300+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.20/go.mod h1:c1PLKvLVUfjjnzbIJ2Q59/mjOV9SWtYA5p/5k0JvER0=
301301
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
302302
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
303303
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

0 commit comments

Comments
 (0)