Skip to content

Commit

Permalink
Cleaning up variables.tf file for eks module (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
mybarretto authored Nov 23, 2021
1 parent d5ce22a commit 73d51f5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions terraform-modules/aws/eks/variables.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
variable "aws_region" {
default = "us-east-1"
}
variable "tags" {}
variable "tags" {
type = map(any)
}
variable "vpc_id" {
default = ""
}
Expand All @@ -15,8 +17,8 @@ variable "public_subnets" {
}

variable "k8s_subnets" {
type = list(any)
default = []
type = list(any)
default = []
description = "Subnet IDs to place the EKS nodes into"
}

Expand Down Expand Up @@ -116,12 +118,12 @@ variable "cluster_log_retention_in_days" {
variable "cluster_endpoint_private_access" {
type = bool
default = false
description = "Enable or disable Kube API private access"
description = "Enable or disable Kube API private access"
}

variable "cluster_endpoint_private_access_cidrs" {
type = list(string)
default = null
type = list(string)
default = null
description = "Kube API public endpoint allow access cidrs"
}

Expand Down

0 comments on commit 73d51f5

Please sign in to comment.