1
0
Files

28 lines
650 B
Terraform

variable "aws-region" {
description = "AWS region"
type = string
}
variable "customer-name" {
description = "Owner of application"
type = string
}
variable "environment" {
description = "Name of environment (i.e. Prod/Lab)"
type = string
}
variable "project" {
description = "Name of project"
type = string
}
variable "application" {
description = "Name of application"
type = string
}
variable "eks_master_user_arn" {
description = "EKS administrator ARN which will be added to access entry"
type = string
}
variable "eks_cluster_name" {
type = string
default = "acme-eks01"
}