Skip to content

Commit

Permalink
chore: update examples to use registry (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathkkb authored Dec 19, 2023
1 parent 3a313b7 commit 3043e89
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 3043e89

Please sign in to comment.