initial commit

This commit is contained in:
Max Williams
2018-07-06 16:31:55 +02:00
parent 3c4e28e8a7
commit 58c4a0e30f
7 changed files with 79 additions and 12 deletions

View File

@@ -32,6 +32,24 @@ variable "manage_aws_auth" {
default = true
}
variable "map_accounts" {
description = "Additional AWS account numbers to add to the aws-auth configmap"
type = "list"
default = []
}
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap"
type = "list"
default = []
}
variable "map_users" {
description = "Additional IAM users to add to the aws-auth configmap"
type = "list"
default = []
}
variable "subnets" {
description = "A list of subnets to place the EKS cluster and workers within."
type = "list"