From 609630248ba0c8145557866b4c602ce2c66f47c4 Mon Sep 17 00:00:00 2001 From: shemau Date: Thu, 25 Apr 2024 16:36:42 +0100 Subject: [PATCH] fix: updated required ibm provider version to `>= 1.62.0, < 2.0.0` (#197) Co-authored-by: Steve Peggs --- README.md | 2 +- examples/default/main.tf | 4 ++-- examples/default/version.tf | 2 +- version.tf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 223b462..2bc38cd 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 | -| [ibm](#requirement\_ibm) | >= 1.56.1, < 2.0.0 | +| [ibm](#requirement\_ibm) | >= 1.62.0, < 2.0.0 | ### Modules diff --git a/examples/default/main.tf b/examples/default/main.tf index fe34f89..c862fdf 100644 --- a/examples/default/main.tf +++ b/examples/default/main.tf @@ -8,12 +8,12 @@ module "resource_group" { module "secrets_manager" { source = "terraform-ibm-modules/secrets-manager/ibm" - version = "1.3.0" + version = "1.10.0" resource_group_id = module.resource_group.resource_group_id region = var.region secrets_manager_name = "${var.prefix}-secrets-manager" sm_service_plan = "trial" - service_endpoints = "public-and-private" + allowed_network = "public-and-private" sm_tags = var.resource_tags } diff --git a/examples/default/version.tf b/examples/default/version.tf index d26196b..2b24737 100644 --- a/examples/default/version.tf +++ b/examples/default/version.tf @@ -3,7 +3,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = "= 1.56.1" + version = "= 1.62.0" } } } diff --git a/version.tf b/version.tf index 8510cfa..065f46c 100644 --- a/version.tf +++ b/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.56.1, < 2.0.0" + version = ">= 1.62.0, < 2.0.0" } } }