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
3 changed files
with
67 additions
and
1 deletion.
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
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,60 @@ | ||
| ## variable "vpc_name" { | ||
| ## description = "Define the VPC name that will be used by this cluster to find the VPC ID" | ||
| ## type = string | ||
| ## # default = "" | ||
| ## } | ||
| ## | ||
| ## variable "subnets_name" { | ||
| ## description = "Define the name of the subnets to be used by this cluster" | ||
| ## type = string | ||
| ## # default = "" | ||
| ## } | ||
|
|
||
| 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 "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 | ||
| } | ||
|
|
||
| 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 |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| locals { | ||
| _module_version = "0.0.0" | ||
| _module_version = "1.0.0" | ||
| } |