Skip to content

Commit

Permalink
Fixed claim_name to be required.
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 committed Mar 27, 2024
1 parent 0c05bb7 commit ec66424
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.6.11 (Mar 27, 2024)
* Fixed `claim_name` to be required.

# 0.6.10 (Mar 27, 2024)
* Fixed invalid Terraform usage of `claim_name`.

Expand Down
2 changes: 1 addition & 1 deletion deployment.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "kubernetes_deployment_v1" "this" {
iterator = pvc

content {
claim_name = lookup(pvc, "claim_name", "")
claim_name = pvc.claim_name
read_only = lookup(pvc, "read_only", null)
}
}
Expand Down

0 comments on commit ec66424

Please sign in to comment.