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
745 B

  1. #Global Vars
  2. aws_cluster_name = "devtest"
  3. #VPC Vars
  4. aws_vpc_cidr_block = "10.250.192.0/18"
  5. aws_cidr_subnets_private = ["10.250.192.0/20","10.250.208.0/20"]
  6. aws_cidr_subnets_public = ["10.250.224.0/20","10.250.240.0/20"]
  7. aws_avail_zones = ["eu-central-1a","eu-central-1b"]
  8. #Bastion Host
  9. aws_bastion_num = 1
  10. aws_bastion_size = "t3.small"
  11. #Kubernetes Cluster
  12. aws_kube_master_num = 3
  13. aws_kube_master_size = "t3.medium"
  14. aws_kube_master_disk_size = 50
  15. aws_etcd_num = 3
  16. aws_etcd_size = "t3.medium"
  17. aws_etcd_disk_size = 50
  18. aws_kube_worker_num = 4
  19. aws_kube_worker_size = "t3.medium"
  20. aws_kube_worker_disk_size = 50
  21. #Settings AWS ELB
  22. aws_nlb_api_port = 6443
  23. k8s_secure_api_port = 6443
  24. default_tags = { }
  25. inventory_file = "../../../inventory/hosts"