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.

43 lines
1.1 KiB

  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. # single AZ deployment
  8. #aws_cidr_subnets_private = ["10.250.192.0/20"]
  9. #aws_cidr_subnets_public = ["10.250.224.0/20"]
  10. # 3+ AZ deployment
  11. #aws_cidr_subnets_private = ["10.250.192.0/24","10.250.193.0/24","10.250.194.0/24","10.250.195.0/24"]
  12. #aws_cidr_subnets_public = ["10.250.224.0/24","10.250.225.0/24","10.250.226.0/24","10.250.227.0/24"]
  13. #Bastion Host
  14. aws_bastion_num = 1
  15. aws_bastion_size = "t3.small"
  16. #Kubernetes Cluster
  17. aws_kube_master_num = 3
  18. aws_kube_master_size = "t3.medium"
  19. aws_kube_master_disk_size = 50
  20. aws_etcd_num = 0
  21. aws_etcd_size = "t3.medium"
  22. aws_etcd_disk_size = 50
  23. aws_kube_worker_num = 4
  24. aws_kube_worker_size = "t3.medium"
  25. aws_kube_worker_disk_size = 50
  26. #Settings AWS ELB
  27. aws_nlb_api_port = 6443
  28. k8s_secure_api_port = 6443
  29. default_tags = {
  30. # Env = "devtest"
  31. # Product = "kubernetes"
  32. }
  33. inventory_file = "../../../inventory/hosts"