diff --git a/README.md b/README.md index 75ad21c4..3bea6a8a 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [helm](#requirement\_helm) | >= 2.15.0, <3.0.0 | -| [ibm](#requirement\_ibm) | >= 1.80.2, <2.0.0 | +| [helm](#requirement\_helm) | 2.17.0 | +| [ibm](#requirement\_ibm) | 1.81.1 | ### Modules @@ -103,10 +103,10 @@ No modules. | Name | Type | |------|------| -| [helm_release.logs_agent](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | resource | -| [ibm_container_cluster.cluster](https://registry.terraform.io/providers/ibm-cloud/ibm/latest/docs/data-sources/container_cluster) | data source | -| [ibm_container_cluster_config.cluster_config](https://registry.terraform.io/providers/ibm-cloud/ibm/latest/docs/data-sources/container_cluster_config) | data source | -| [ibm_container_vpc_cluster.cluster](https://registry.terraform.io/providers/ibm-cloud/ibm/latest/docs/data-sources/container_vpc_cluster) | data source | +| [helm_release.logs_agent](https://registry.terraform.io/providers/hashicorp/helm/2.17.0/docs/resources/release) | resource | +| [ibm_container_cluster.cluster](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.1/docs/data-sources/container_cluster) | data source | +| [ibm_container_cluster_config.cluster_config](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.1/docs/data-sources/container_cluster_config) | data source | +| [ibm_container_vpc_cluster.cluster](https://registry.terraform.io/providers/ibm-cloud/ibm/1.81.1/docs/data-sources/container_vpc_cluster) | data source | ### Inputs diff --git a/examples/logs-agent-iks/version.tf b/examples/logs-agent-iks/version.tf index bca3a4bc..0e7acba1 100644 --- a/examples/logs-agent-iks/version.tf +++ b/examples/logs-agent-iks/version.tf @@ -15,12 +15,12 @@ terraform { # The kubernetes provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version kubernetes = { source = "hashicorp/kubernetes" - version = ">= 2.16.1" + version = "2.38.0" } # The time provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version time = { source = "hashicorp/time" - version = ">= 0.9.1" + version = "0.13.1" } } } diff --git a/examples/logs-agent-ocp/version.tf b/examples/logs-agent-ocp/version.tf index 397255ec..abd649f5 100644 --- a/examples/logs-agent-ocp/version.tf +++ b/examples/logs-agent-ocp/version.tf @@ -11,11 +11,11 @@ terraform { } helm = { source = "hashicorp/helm" - version = ">= 2.15.0" + version = "3.0.2" } kubernetes = { source = "hashicorp/kubernetes" - version = ">= 2.16.1" + version = "2.38.0" } } } diff --git a/tests/resources/version.tf b/tests/resources/version.tf index 06e45f47..60ac7f57 100644 --- a/tests/resources/version.tf +++ b/tests/resources/version.tf @@ -4,7 +4,7 @@ terraform { required_providers { ibm = { source = "ibm-cloud/ibm" - version = ">= 1.80.2" + version = "1.81.1" } } } diff --git a/version.tf b/version.tf index 8c347465..b9c6e6f0 100644 --- a/version.tf +++ b/version.tf @@ -5,11 +5,11 @@ terraform { required_providers { ibm = { source = "ibm-cloud/ibm" - version = ">= 1.80.2, <2.0.0" + version = "1.81.1" } helm = { source = "hashicorp/helm" - version = ">= 2.15.0, <3.0.0" + version = "2.17.0" } } }