2017-03-01 17:25:58 +00:00
|
|
|
variable "aws_cluster_name" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "Name of Cluster"
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_vpc_id" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "AWS VPC ID"
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 07:53:54 +00:00
|
|
|
variable "aws_nlb_api_port" {
|
|
|
|
description = "Port for AWS NLB"
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "k8s_secure_api_port" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "Secure Port of K8S API Server"
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_avail_zones" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "Availability Zones Used"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = list(string)
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_subnet_ids_public" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "IDs of Public Subnets"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = list(string)
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
2017-10-18 10:44:32 +00:00
|
|
|
|
|
|
|
variable "default_tags" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "Tags for all resources"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = map(string)
|
2017-10-18 10:44:32 +00:00
|
|
|
}
|