Skip to content

Commit

Permalink
fix(deps): updated required IBM provider version constraint to `>= 1.…
Browse files Browse the repository at this point in the history
…70.0, <2.0.0` (#436)
  • Loading branch information
shemau authored Dec 16, 2024
1 parent aa4062d commit 7e285e6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ You need the following permissions to run this module.
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.15.0, <3.0.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.69.2, <2.0.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.70.0, <2.0.0 |

### Modules

Expand Down
2 changes: 1 addition & 1 deletion examples/obs-agent-iks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ resource "time_sleep" "wait_operators" {

module "observability_instances" {
source = "terraform-ibm-modules/observability-instances/ibm"
version = "3.0.2"
version = "3.3.1"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cloud_logs_plan = "standard"
Expand Down
2 changes: 1 addition & 1 deletion examples/obs-agent-iks/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = "1.69.2"
version = "1.70.0"
}
helm = {
source = "hashicorp/helm"
Expand Down
2 changes: 1 addition & 1 deletion examples/obs-agent-ocp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ data "ibm_container_cluster_config" "cluster_config" {

module "observability_instances" {
source = "terraform-ibm-modules/observability-instances/ibm"
version = "3.0.2"
version = "3.3.1"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cloud_logs_plan = "standard"
Expand Down
2 changes: 1 addition & 1 deletion examples/obs-agent-ocp/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.69.2"
version = ">= 1.70.0"
}
helm = {
source = "hashicorp/helm"
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.69.2, <2.0.0"
version = ">= 1.70.0, <2.0.0"
}
helm = {
source = "hashicorp/helm"
Expand Down

0 comments on commit 7e285e6

Please sign in to comment.