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.

32 lines
686 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_ami = "ami-5900cc36"
  10. aws_bastion_size = "t2.small"
  11. #Kubernetes Cluster
  12. aws_kube_master_num = 3
  13. aws_kube_master_size = "t2.medium"
  14. aws_etcd_num = 3
  15. aws_etcd_size = "t2.medium"
  16. aws_kube_worker_num = 4
  17. aws_kube_worker_size = "t2.medium"
  18. aws_cluster_ami = "ami-903df7ff"
  19. #Settings AWS ELB
  20. aws_elb_api_port = 6443
  21. k8s_secure_api_port = 6443
  22. kube_insecure_apiserver_address = 0.0.0.0