Skip to content

Commit

Permalink
fix: updated usage to reference hashicorp instead of github (#475)
Browse files Browse the repository at this point in the history
Co-authored-by: Conall Ó Cofaigh <ocofaigh@ie.ibm.com>
  • Loading branch information
mounika-nalla and ocofaigh committed Jul 20, 2023
1 parent 6b037d0 commit fba832c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ This module creates any number of application load balancers to balance traffic

```terraform
module vsi {
# Replace "main" with a GIT release version to lock into a specific release
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone-vsi.git?ref=main"
source = "terraform-ibm-modules/landing-zone-vsi/ibm"
version = "latest" # Replace "latest" with a release version to lock into a specific release
resource_group_id = var.resource_group_id
prefix = var.prefix
tags = var.tags
Expand Down
3 changes: 2 additions & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ data "ibm_is_ssh_key" "existing_ssh_key" {
#############################################################################

module "slz_vpc" {
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone-vpc.git?ref=v7.2.0"
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.2.0"
resource_group_id = local.resource_group_id
region = var.region
prefix = var.prefix
Expand Down
3 changes: 2 additions & 1 deletion examples/fscloud/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ data "ibm_is_ssh_key" "existing_ssh_key" {
#############################################################################

module "slz_vpc" {
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone-vpc.git?ref=v7.2.0"
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.2.0"
resource_group_id = local.resource_group_id
region = var.region
prefix = var.prefix
Expand Down

0 comments on commit fba832c

Please sign in to comment.