Skip to content

Commit

Permalink
fix: Correct default values which should be an array of strings (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs authored Oct 18, 2022
1 parent 302488e commit 7ff99ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "helm_release" "vault" {
chart = "vault"
version = try(var.helm_config.version, "0.22.0")
repository = try(var.helm_config.repository, "https://helm.releases.hashicorp.com")
values = try(var.helm_config.values, file("${path.module}/vault-config.yml"))
values = try(var.helm_config.values, [file("${path.module}/vault-config.yml")])

timeout = try(var.helm_config.timeout, 1200)
repository_key_file = try(var.helm_config.repository_key_file, null)
Expand Down

0 comments on commit 7ff99ed

Please sign in to comment.