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.

33 lines
566 B

  1. variable "aws_cluster_name" {
  2. description = "Name of Cluster"
  3. }
  4. variable "aws_vpc_id" {
  5. description = "AWS VPC ID"
  6. }
  7. variable "aws_elb_api_port" {
  8. description = "Port for AWS ELB"
  9. }
  10. variable "k8s_secure_api_port" {
  11. description = "Secure Port of K8S API Server"
  12. }
  13. variable "aws_avail_zones" {
  14. description = "Availability Zones Used"
  15. type = "list"
  16. }
  17. variable "aws_subnet_ids_public" {
  18. description = "IDs of Public Subnets"
  19. type = "list"
  20. }
  21. variable "default_tags" {
  22. description = "Tags for all resources"
  23. type = "map"
  24. }