Skip to content

Commit

Permalink
fix instance type
Browse files Browse the repository at this point in the history
  • Loading branch information
darkn3rd committed Dec 30, 2019
1 parent 7480215 commit da69a56
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
variable "eks_cluster_name" {}
variable "region" {}
variable "instanct_type" {
default = "m5.large"
}

data "aws_availability_zones" "available" {}

Expand Down Expand Up @@ -41,7 +44,7 @@ module "eks" {
worker_groups = [
{
name = "worker-group-1"
instance_type = "m5-large"
instance_type = var.instance_type
asg_desired_capacity = 2
}
]
Expand Down

0 comments on commit da69a56

Please sign in to comment.