Skip to content

Commit a664483

Browse files
authored
Merge pull request #30 from softwaremill/fix/taints
2 parents 4ce117c + 3b8b9b6 commit a664483

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ No requirements.
7474

7575
| Name | Version |
7676
|------|---------|
77-
| <a name="provider_google"></a> [google](#provider\_google) | 5.45.0 |
78-
| <a name="provider_google-beta"></a> [google-beta](#provider\_google-beta) | 5.45.0 |
77+
| <a name="provider_google"></a> [google](#provider\_google) | 5.45.2 |
78+
| <a name="provider_google-beta"></a> [google-beta](#provider\_google-beta) | 5.45.2 |
7979

8080
## Modules
8181

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ resource "google_container_node_pool" "pools" {
140140
dynamic "taint" {
141141
for_each = lookup(each.value, "taints", [])
142142
content {
143-
key = each.key
144-
value = each.value
145-
effect = each.taint
143+
key = taint.value.key
144+
value = taint.value.value
145+
effect = lookup(taint.value, "effect", "NoSchedule")
146146
}
147147
}
148148

0 commit comments

Comments
 (0)