Skip to content

Commit

Permalink
chore: update examples to use registry
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathkkb committed Dec 18, 2023
1 parent 3a313b7 commit 4bb5c1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions examples/interconnect_attachment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
*/

module "cloud_router" {
source = "../../"
source = "terraform-google-modules/cloud-router/google"
version = "~> 6.0"

name = "example-router"
project = "example-project"
Expand All @@ -29,7 +30,9 @@ module "cloud_router" {
}

module "interconnect_attachment" {
source = "../../modules/interconnect_attachment"
source = "terraform-google-modules/cloud-router/google//modules/interconnect_attachment"
version = "~> 6.0"

name = "example-attachment"
project = "example-project"
region = "us-central1"
Expand Down

0 comments on commit 4bb5c1d

Please sign in to comment.