2017-03-02 01:25:58 +08:00
|
|
|
variable "aws_vpc_cidr_block" {
|
2019-04-08 17:22:24 +08:00
|
|
|
description = "CIDR Blocks for AWS VPC"
|
2017-03-02 01:25:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_cluster_name" {
|
2019-04-08 17:22:24 +08:00
|
|
|
description = "Name of Cluster"
|
2017-03-02 01:25:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_avail_zones" {
|
2019-04-08 17:22:24 +08:00
|
|
|
description = "AWS Availability Zones Used"
|
2020-12-23 21:08:26 +08:00
|
|
|
type = list(string)
|
2017-03-02 01:25:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_cidr_subnets_private" {
|
|
|
|
description = "CIDR Blocks for private subnets in Availability zones"
|
2020-12-23 21:08:26 +08:00
|
|
|
type = list(string)
|
2017-03-02 01:25:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_cidr_subnets_public" {
|
|
|
|
description = "CIDR Blocks for public subnets in Availability zones"
|
2020-12-23 21:08:26 +08:00
|
|
|
type = list(string)
|
2017-03-02 01:25:58 +08:00
|
|
|
}
|
2017-10-18 18:44:32 +08:00
|
|
|
|
|
|
|
variable "default_tags" {
|
|
|
|
description = "Default tags for all resources"
|
2020-12-23 21:08:26 +08:00
|
|
|
type = map(string)
|
2017-10-18 18:44:32 +08:00
|
|
|
}
|