Skip to content

Commit

Permalink
fix: renamed variable which used reserved namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kfc-manager committed Apr 4, 2024
1 parent 46e3d8a commit df5dbcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ resource "aws_iam_role_policy_attachment" "xray" {

resource "aws_eks_cluster" "main" {
name = var.identifier
version = var.version
version = var.kubernetes_version
role_arn = aws_iam_role.master.arn
enabled_cluster_log_types = ["api", "audit", "authenticator", "controllerManager", "scheduler"]

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "identifier" {
}
}

variable "version" {
variable "kubernetes_version" {
description = "The Kubernetes version the cluster runs on."
type = string
default = "1.29"
Expand Down

0 comments on commit df5dbcd

Please sign in to comment.