Skip to content

Commit

Permalink
fix: Correct image_pull_secret dynamic block iterator (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
carflo authored May 17, 2023
1 parent afc511c commit 1df78c2
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 @@ -204,7 +204,7 @@ resource "kubernetes_service_account_v1" "this" {
for_each = try(each.value.service_account.image_pull_secrets, [])

content {
name = secret.value.name
name = image_pull_secret.value.name
}
}

Expand Down

0 comments on commit 1df78c2

Please sign in to comment.