Skip to content

Commit

Permalink
fix: Pass through env vars for services (#117)
Browse files Browse the repository at this point in the history
* update

* update
  • Loading branch information
George Scott committed Apr 12, 2024
1 parent c3ec156 commit 35e15c0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ module "wandb" {

## Examples

We have included documentation and reference examples for additional common
installation scenarios for Weights & Biases, as well as examples for supporting
We have included documentation and reference examples for common
installation scenarios, as well as examples for supporting
resources that lack official modules.

- [Public Instance with HTTPS using Cloud DNS](examples/public-dns-with-cloud-dns)
Expand Down
19 changes: 19 additions & 0 deletions modules/app_gke/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@ variable "machine_type" {
type = string
}

variable "weave_wandb_env" {
type = map(string)
description = "Extra environment variables for W&B"
default = {}
}

variable "app_wandb_env" {
type = map(string)
description = "Extra environment variables for W&B"
default = {}
}

variable "parquet_wandb_env" {
type = map(string)
description = "Extra environment variables for W&B"
default = {}
}


variable "node_count" {
type = number
}

0 comments on commit 35e15c0

Please sign in to comment.