Skip to content

Commit

Permalink
feat!: Bump helm-wandb vers to v2.0.0, requires TF > 1.9 (#315)
Browse files Browse the repository at this point in the history
* feat!: Bump helm-wandb vers to v2.0.0, requires TF > 1.9

* thread enable_helm_release to tf_helm_wandbˆ
  • Loading branch information
j7m4 authored Jan 7, 2025
1 parent fd389c4 commit 0f4b21c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ audit logging and SAML single sign-on.
This module is intended to run in an AWS account with minimal preparation,
however it does have the following pre-requisites:

### Terrafom version >= 1.5
### Terrafom version >= 1.9

### Credentials / Permissions

Expand Down
2 changes: 1 addition & 1 deletion examples/byo-vpc-eks-sql-redis/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ locals {

module "wandb" {
source = "wandb/wandb/helm"
version = "1.2.0"
version = "2.0.0"

depends_on = [
module.app_lb,
Expand Down
2 changes: 1 addition & 1 deletion examples/byo-vpc-sql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ locals {

module "wandb" {
source = "wandb/wandb/helm"
version = "1.2.0"
version = "2.0.0"

depends_on = [
module.app_eks,
Expand Down
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ locals {

module "wandb" {
source = "wandb/wandb/helm"
version = "1.2.0"
version = "2.0.0"

depends_on = [
module.database,
Expand All @@ -262,6 +262,7 @@ module "wandb" {

operator_chart_version = var.operator_chart_version
controller_image_tag = var.controller_image_tag
enable_helm_release = var.enable_helm_release

spec = {
values = {
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ variable "controller_image_tag" {
default = "1.14.0"
}

variable "enable_helm_release" {
type = bool
default = true
description = "Enable or disable applying and releasing Helm chart"
}

##########################################
# Database #
##########################################
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 1.0"
required_version = "~> 1.9"
required_providers {
aws = {
source = "hashicorp/aws"
Expand Down

0 comments on commit 0f4b21c

Please sign in to comment.