Skip to content

Commit

Permalink
Merge branch 'main' into sa-solutions/issues/1
Browse files Browse the repository at this point in the history
  • Loading branch information
flamarion authored Jan 7, 2025
2 parents eab9c15 + 388483b commit 53e51f7
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [6.0.0](https://github.com/wandb/terraform-aws-wandb/compare/v5.2.2...v6.0.0) (2025-01-07)


### ⚠ BREAKING CHANGES

* Bump helm-wandb vers to v2.0.0, requires TF > 1.9 (#315)

### Features

* Bump helm-wandb vers to v2.0.0, requires TF > 1.9 ([#315](https://github.com/wandb/terraform-aws-wandb/issues/315)) ([0f4b21c](https://github.com/wandb/terraform-aws-wandb/commit/0f4b21c35d9bfcc746cd52f159b1653892cff366))

### [5.2.2](https://github.com/wandb/terraform-aws-wandb/compare/v5.2.1...v5.2.2) (2024-12-26)


Expand Down
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 53e51f7

Please sign in to comment.