You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
602 B

  1. variable "aws_vpc_cidr_block" {
  2. description = "CIDR Blocks for AWS VPC"
  3. }
  4. variable "aws_cluster_name" {
  5. description = "Name of Cluster"
  6. }
  7. variable "aws_avail_zones" {
  8. description = "AWS Availability Zones Used"
  9. type = "list"
  10. }
  11. variable "aws_cidr_subnets_private" {
  12. description = "CIDR Blocks for private subnets in Availability zones"
  13. type = "list"
  14. }
  15. variable "aws_cidr_subnets_public" {
  16. description = "CIDR Blocks for public subnets in Availability zones"
  17. type = "list"
  18. }
  19. variable "default_tags" {
  20. description = "Default tags for all resources"
  21. type = "map"
  22. }