Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 14, 2021
1 parent 36a49fa commit 4d0b2d7
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 61 deletions.
18 changes: 18 additions & 0 deletions common/variables.eks-common.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
variable "cluster_name" {
description = "EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev)"
type = string
default = null
}

variable "cluster_version" {
description = "The EKS Kubernetes version number, see https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html"
type = string
default = "1.21"
}


variable "domain" {
description = "The DNS domain name of the cluster. Defaults to empty which causes the sample application to use the domain assigned to the load balancer of the istio ingress gateway."
type = string
default = ""
}
30 changes: 30 additions & 0 deletions common/variables.eks-nodegroup.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
variable "instance_type" {
description = "EKS worker node instance type (default: t3.xlarge)"
type = string
default = "t3.xlarge"
}

variable "nodegroup_desired_size" {
description = "EKS Nodegroup desire size (default: 1)"
type = number
default = 1
}

variable "nodegroup_minumum_size" {
description = "EKS Nodegroup minimum size (default: 1)"
type = number
default = 1
}

variable "nodegroup_maximum_size" {
description = "EKs Nodegroup maximum size (default: 16)"
type = number
default = 16
}

variable "nodegroup_instance_disk_size" {
description = "The size of EKS nodegroup EBS disk in gigabytes (default: 40)"
type = number
default = 40
}

60 changes: 0 additions & 60 deletions common/variables.eks.tf

This file was deleted.

1 change: 1 addition & 0 deletions patch-aws-auth/variables.eks-common.tf
1 change: 0 additions & 1 deletion patch-aws-auth/variables.eks.tf

This file was deleted.

0 comments on commit 4d0b2d7

Please sign in to comment.