Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#
# Variables Configuration
#
variable "account_id" {
type = "string"
description = "Account ID containing IAM users to be mapped into the cluster"
}
variable "availability_zones" {
type = "list"
default = ["us-east-1a", "us-east-1b"]
description = "List of 2 availability zones in which to create the worker nodes"
}
variable "cluster_name" {
type = "string"
default = "cluster"
description = "Kubernetes cluster name"
}
variable "role_arn" {
type = "string"
description = "IAM role to be used when accessing the cluster"
}
variable "tags" {
type = "map"
default = {}
description = "Map of tags to be applied to all resources"
}