Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Nov 8, 2023
1 parent a7ecae1 commit ea2fadf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion examples/public-dns-external/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,12 @@ variable "other_wandb_env" {
default = {}
}

locals {
secrets_prefix_default = var.namespace
}

variable "secrets_prefix" {
type = string
description = "(Required) The prefix assigned to all secrets created by W&B users and saved using the AWS Secret Manager"
default = "wandb-secret"
default = local.secrets_prefix_default
}
8 changes: 6 additions & 2 deletions modules/app_eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,12 @@ variable "service_port" {
default = 32543
}

locals {
secrets_prefix_default = var.namespace
}

variable "secrets_prefix" {
type = string
description = "(Required) The prefix assigned to all secrets created by W&B users and saved using the AWS Secret Manager"
default = "wandb-secret"
}
default = local.secrets_prefix_default
}

0 comments on commit ea2fadf

Please sign in to comment.