Skip to content

Commit 3edf777

Browse files
committed
fix: added source registry
1 parent 34b4829 commit 3edf777

File tree

1 file changed

+4
-4
lines changed
  • examples/internal-lb-cloud-run

1 file changed

+4
-4
lines changed

examples/internal-lb-cloud-run/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ module "backend-service-region-b" {
9595
}
9696

9797
module "internal-lb-http-backend" {
98-
source = "../../modules/backend" # use registry
99-
#version = "~> 12.1.1"
98+
source = "terraform-google-modules/lb-http/google//modules/frontend"
99+
version = "~> 12.1.1"
100100

101101
project_id = var.project_id
102102
name = "int-lb-http-backend"
@@ -110,8 +110,8 @@ module "internal-lb-http-backend" {
110110
}
111111

112112
module "internal-lb-http-frontend" {
113-
source = "../../modules/frontend" # use registry
114-
#version = "~> 12.1.1"
113+
source = "terraform-google-modules/lb-http/google//modules/frontend"
114+
version = "~> 12.1.1"
115115

116116
project_id = var.project_id
117117
name = "int-lb-http-frontend"

0 commit comments

Comments
 (0)