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.

35 lines
680 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. #Bastion Host
  8. aws_bastion_size = "t2.medium"
  9. #Kubernetes Cluster
  10. aws_kube_master_num = 3
  11. aws_kube_master_size = "t2.medium"
  12. aws_etcd_num = 3
  13. aws_etcd_size = "t2.medium"
  14. aws_kube_worker_num = 4
  15. aws_kube_worker_size = "t2.medium"
  16. #Settings AWS ELB
  17. aws_elb_api_port = 6443
  18. k8s_secure_api_port = 6443
  19. kube_insecure_apiserver_address = "0.0.0.0"
  20. default_tags = {
  21. # Env = "devtest"
  22. # Product = "kubernetes"
  23. }
  24. inventory_file = "../../../inventory/hosts"