Skip to content

Commit e969085

Browse files
authored
Merge pull request #1220 from kube-hetzner/fix/linting-error
Fix linting error
2 parents 7a64ea3 + dc2d8ba commit e969085

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ locals {
132132
swap_size : nodepool_obj.swap_size,
133133
zram_size : nodepool_obj.zram_size,
134134
index : node_index
135-
selinux: nodepool_obj.selinux
135+
selinux : nodepool_obj.selinux
136136
placement_group_compat_idx : nodepool_obj.placement_group_compat_idx,
137137
placement_group : nodepool_obj.placement_group
138138
}
@@ -155,7 +155,7 @@ locals {
155155
swap_size : nodepool_obj.swap_size,
156156
zram_size : nodepool_obj.zram_size,
157157
index : node_index
158-
selinux: nodepool_obj.selinux
158+
selinux : nodepool_obj.selinux
159159
placement_group_compat_idx : nodepool_obj.placement_group_compat_idx,
160160
placement_group : nodepool_obj.placement_group
161161
}

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ variable "control_plane_nodepools" {
175175
swap_size = optional(string, "")
176176
zram_size = optional(string, "")
177177
kubelet_args = optional(list(string), ["kube-reserved=cpu=250m,memory=1500Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
178-
selinux = optional(bool, true)
178+
selinux = optional(bool, true)
179179
placement_group_compat_idx = optional(number, 0)
180180
placement_group = optional(string, null)
181181
}))
@@ -207,7 +207,7 @@ variable "agent_nodepools" {
207207
swap_size = optional(string, "")
208208
zram_size = optional(string, "")
209209
kubelet_args = optional(list(string), ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
210-
selinux = optional(bool, true)
210+
selinux = optional(bool, true)
211211
placement_group_compat_idx = optional(number, 0)
212212
placement_group = optional(string, null)
213213
}))
@@ -919,4 +919,4 @@ variable "disable_selinux" {
919919
type = bool
920920
default = false
921921
description = "Disable SELinux on all nodes."
922-
}
922+
}

0 commit comments

Comments
 (0)