Skip to content

Commit e9ec2ea

Browse files
committed
fix: fix format
1 parent cd5abe4 commit e9ec2ea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/spot_eks_cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module "eks-cluster" {
6464

6565
autoscaling_group_tags = {
6666
"k8s.io/cluster-autoscaler/eks-spot-demo-eks-cluster" = "owned"
67-
"k8s.io/cluster-autoscaler/enabled" = "true"
67+
"k8s.io/cluster-autoscaler/enabled" = "true"
6868
}
6969
}
7070
}

kms.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource "aws_kms_key" "eks_kms_key" {
22
description = "KMS Key generated to encrypt ${local.cluster_name} secrets"
33
deletion_window_in_days = 10
4-
enable_key_rotation = true
4+
enable_key_rotation = true
55
}

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ variable "enable_cluster_autoscaler" {
3939
}
4040

4141
variable "manage_aws_auth_configmap" {
42-
type = bool
42+
type = bool
4343
description = "Choose whether the EKS module should manage your aws-auth configmap or not"
44-
default = true
44+
default = true
4545
}
4646

4747
variable "create_aws_auth_configmap" {
48-
type = bool
48+
type = bool
4949
description = "This option toogles aws-auth creation. It should only be enabled when using self-managed nodes"
50-
default = false
50+
default = false
5151
}
5252

5353
variable "map_roles" {

0 commit comments

Comments
 (0)