generated from terraform-modules/template_aws_submodules
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
49 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = "" | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| } | ||
|
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../common/variables.eks-common.tf |
This file was deleted.
Oops, something went wrong.