From 35e15c096372e549656877137c08529e2b32bcec Mon Sep 17 00:00:00 2001 From: George Scott Date: Fri, 12 Apr 2024 06:11:13 -0500 Subject: [PATCH] fix: Pass through env vars for services (#117) * update * update --- README.md | 4 ++-- modules/app_gke/variables.tf | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc891b5..768f473 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/modules/app_gke/variables.tf b/modules/app_gke/variables.tf index 9cf2f3f..a9ec740 100644 --- a/modules/app_gke/variables.tf +++ b/modules/app_gke/variables.tf @@ -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 } \ No newline at end of file