Skip to content

Commit c89897e

Browse files
authored
chore: pull resource group from terraform registry (#532)
1 parent ba597e1 commit c89897e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ The Event Streams service supports payload data encryption that uses a root key
2323
* <a href="./examples/basic">Basic example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=event-streams-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-event-streams/tree/main/examples/basic"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
2424
* <a href="./examples/complete">Complete example with topics and schema creation.</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=event-streams-complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-event-streams/tree/main/examples/complete"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
2525
* <a href="./examples/fscloud">Financial Services Cloud profile example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=event-streams-fscloud-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-event-streams/tree/main/examples/fscloud"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
26+
* [Deployable Architectures](./solutions)
27+
* <a href="./solutions/quickstart"> Cloud automation for Event Streams (quickstart)</a>
28+
* <a href="./solutions/security-enforced"> Cloud automation for Event Streams (Security-enforced)</a>
2629
* [Contributing](#contributing)
2730
<!-- END OVERVIEW HOOK -->
2831

examples/fscloud/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
##############################################################################
44

55
module "resource_group" {
6-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-resource-group.git?ref=v1.4.7"
6+
source = "terraform-ibm-modules/resource-group/ibm"
7+
version = "1.4.7"
78
# if an existing resource group is not set (null) create a new one using prefix
89
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
910
existing_resource_group_name = var.resource_group

0 commit comments

Comments
 (0)