Skip to content

Commit 4f60e28

Browse files
authored
Merge pull request #13 from dnks0/feature/dbx-proxy
fix descriptions
2 parents a8ed3e9 + b46256a commit 4f60e28

4 files changed

Lines changed: 3 additions & 15 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ dist
3434

3535
# terraform files
3636
**/.terraform/
37+
terraform/**/.tfvars
3738
**/.terraform.lock.hcl
3839
**/terraform*.tfstate
3940
**/terraform*.backup

terraform/aws/.tfvars

Lines changed: 0 additions & 13 deletions
This file was deleted.

terraform/aws/modules/load-balancer/local.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ locals {
1010

1111
nlb_listener_for_egress_rules = concat(
1212
[for l in var.dbx_proxy_listener : { port = l.port, description = "Databricks to NLB to dbx-proxy listener ${l.name}" }],
13-
contains([for l in var.dbx_proxy_listener : l.port], var.dbx_proxy_health_port) ? [] : [{ port = var.dbx_proxy_health_port, description = "NLB to dbx-proxy health checks" }],
13+
contains([for l in var.dbx_proxy_listener : l.port], var.dbx_proxy_health_port) ? [] : [{ port = var.dbx_proxy_health_port, description = "Databricks to NLB to dbx-proxy health check" }],
1414
)
1515

1616
nlb_sg_egress_rules = local.nlb_has_security_groups ? [

terraform/aws/modules/proxy/ec2.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resource "aws_security_group" "this" {
1818

1919
# Health check port
2020
ingress {
21-
description = "NLB to dbx-proxy health checks"
21+
description = "Databricks to NLB to dbx-proxy health check"
2222
from_port = var.dbx_proxy_health_port
2323
to_port = var.dbx_proxy_health_port
2424
protocol = "tcp"

0 commit comments

Comments
 (0)