first commit

This commit is contained in:
brandoconnor
2018-06-06 20:55:23 -07:00
commit 07aba1b766
28 changed files with 974 additions and 0 deletions

22
variables.tf Normal file
View File

@@ -0,0 +1,22 @@
variable "cluster_name" {
description = "Name of the EKS cluster."
}
variable "vpc_id" {
description = "VPC id where the cluster and other resources will be deployed."
}
variable "security_groups" {
description = "The security groups to attach to the EKS cluster instances"
type = "list"
}
variable "subnets" {
description = "A list of subnets to associate with the cluster's underlying instances."
type = "list"
}
variable "tags" {
description = "A map of tags to add to all resources"
default = {}
}