diff --git a/README.md b/README.md
index 3b6a4dfa..b8f73872 100644
--- a/README.md
+++ b/README.md
@@ -143,7 +143,7 @@ statement instead the previous block.
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.9.0 |
-| [ibm](#requirement\_ibm) | >= 1.76.0, < 2.0.0 |
+| [ibm](#requirement\_ibm) | >= 1.79.0, < 2.0.0 |
| [time](#requirement\_time) | >= 0.9.1, < 1.0.0 |
### Modules
diff --git a/examples/advanced/version.tf b/examples/advanced/version.tf
index 5ac5801d..b2cec2d9 100644
--- a/examples/advanced/version.tf
+++ b/examples/advanced/version.tf
@@ -5,7 +5,7 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
- version = ">= 1.76.0"
+ version = ">= 1.79.0"
}
}
}
diff --git a/examples/basic/version.tf b/examples/basic/version.tf
index 6dada8eb..f9e3685f 100644
--- a/examples/basic/version.tf
+++ b/examples/basic/version.tf
@@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = "1.76.0"
+ version = "1.79.0"
}
}
}
diff --git a/version.tf b/version.tf
index 4a705029..f0dffd58 100644
--- a/version.tf
+++ b/version.tf
@@ -4,7 +4,7 @@ terraform {
# Use "greater than or equal to" range in modules
ibm = {
source = "ibm-cloud/ibm"
- version = ">= 1.76.0, < 2.0.0"
+ version = ">= 1.79.0, < 2.0.0"
}
time = {
source = "hashicorp/time"