We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9e377 commit 2f3a65dCopy full SHA for 2f3a65d
modules/nlb/main.tf
@@ -9,7 +9,7 @@ resource "aws_lb" "nlb" {
9
module "target_pgwire" {
10
source = "./target"
11
12
- name = "pgwire"
+ name = "${var.name_prefix}-pgwire"
13
nlb_arn = aws_lb.nlb.arn
14
namespace = var.namespace
15
vpc_id = var.vpc_id
@@ -21,7 +21,7 @@ module "target_pgwire" {
21
module "target_http" {
22
23
24
- name = "http"
+ name = "${var.name_prefix}-http"
25
26
27
@@ -33,7 +33,7 @@ module "target_http" {
33
module "target_console" {
34
35
36
- name = "console"
+ name = "${var.name_prefix}-console"
37
38
39
0 commit comments