2017-03-01 17:25:58 +00:00
|
|
|
variable "aws_vpc_cidr_block" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "CIDR Blocks for AWS VPC"
|
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_avail_zones" {
|
2019-04-08 09:22:24 +00:00
|
|
|
description = "AWS Availability Zones Used"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = list(string)
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_cidr_subnets_private" {
|
|
|
|
description = "CIDR Blocks for private subnets in Availability zones"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = list(string)
|
2017-03-01 17:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_cidr_subnets_public" {
|
|
|
|
description = "CIDR Blocks for public subnets in Availability zones"
|
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" {
|
|
|
|
description = "Default tags for all resources"
|
2020-12-23 13:08:26 +00:00
|
|
|
type = map(string)
|
2017-10-18 10:44:32 +00:00
|
|
|
}
|