diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf
index c8d9559..7baddd7 100644
--- a/examples/advanced/main.tf
+++ b/examples/advanced/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.1.6"
+ version = "1.2.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
diff --git a/examples/basic/main.tf b/examples/basic/main.tf
index 24e8ed4..b284e9d 100644
--- a/examples/basic/main.tf
+++ b/examples/basic/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.1.6"
+ version = "1.2.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
diff --git a/solutions/fully-configurable/README.md b/solutions/fully-configurable/README.md
index 0ea3f95..7276084 100644
--- a/solutions/fully-configurable/README.md
+++ b/solutions/fully-configurable/README.md
@@ -21,7 +21,7 @@ This solution supports provisioning and configuring the following infrastructure
| Name | Source | Version |
|------|--------|---------|
-| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.1.6 |
+| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.2.0 |
| [scc\_wp](#module\_scc\_wp) | ../.. | n/a |
### Resources
diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf
index 8c4cd81..14c2ee0 100644
--- a/solutions/fully-configurable/main.tf
+++ b/solutions/fully-configurable/main.tf
@@ -11,7 +11,7 @@ locals {
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.1.6"
+ version = "1.2.0"
existing_resource_group_name = var.existing_resource_group_name
}