Skip to content

Commit

Permalink
misc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
j7m4 committed Jan 29, 2025
1 parent 6043fe5 commit cada96e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/public-dns-external/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ module "wandb_infra" {
use_redis_in_cluster = var.use_redis_in_cluster
redis_master_name = var.redis_master_name
redis_service_name_prefix = var.redis_service_name_prefix

kubernetes_alb_internet_facing = var.kubernetes_alb_internet_facing
}

data "aws_eks_cluster" "app_cluster" {
Expand Down
6 changes: 6 additions & 0 deletions examples/public-dns-external/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,10 @@ variable "redis_master_name" {
type = string
default = null
description = "Name of the redis master that sentinel uses to monitor"
}

variable "kubernetes_alb_internet_facing" {
type = bool
default = true
description = "Whether to enable private only traffic"
}
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ module "wandb" {
depends_on = [
module.database,
module.app_eks,
module.app_lb,
module.networking,
module.redis,
]

Expand Down

0 comments on commit cada96e

Please sign in to comment.