Skip to content

Commit

Permalink
[#3988] Fix deprecated tf parameter (#3989)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljupcovangelski committed Dec 14, 2022
1 parent 38fe85c commit aa81d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -34,7 +34,7 @@ metadata:
annotations:
"helm.sh/hook": "post-install,post-upgrade"
"helm.sh/hook-weight": "11"
"helm.sh/hook-delete-policy": "hook-succeeded"
"helm.sh/hook-delete-policy": "hook-succeeded,hook-failed"
labels:
core.airy.co/managed: "true"
spec:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/terraform/modules/core/main.tf
Expand Up @@ -3,7 +3,7 @@ data "http" "core_version" {
}

locals {
core_version = var.core_version != "" ? var.core_version : trimspace(data.http.core_version.body)
core_version = var.core_version != "" ? var.core_version : trimspace(data.http.core_version.response_body)
}

resource "helm_release" "airy_core" {
Expand Down

0 comments on commit aa81d83

Please sign in to comment.