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

  1. #Global Vars
  2. aws_cluster_name = "devtest"
  3. aws_region = "eu-central-1"
  4. #VPC Vars
  5. aws_vpc_cidr_block = "10.250.192.0/18"
  6. aws_cidr_subnets_private = ["10.250.192.0/20","10.250.208.0/20"]
  7. aws_cidr_subnets_public = ["10.250.224.0/20","10.250.240.0/20"]
  8. aws_avail_zones = ["eu-central-1a","eu-central-1b"]
  9. #Bastion Host
  10. aws_bastion_ami = "ami-5900cc36"
  11. aws_bastion_size = "t2.small"
  12. #Kubernetes Cluster
  13. aws_kube_master_num = 3
  14. aws_kube_master_size = "t2.medium"
  15. aws_etcd_num = 3
  16. aws_etcd_size = "t2.medium"
  17. aws_kube_worker_num = 4
  18. aws_kube_worker_size = "t2.medium"
  19. aws_cluster_ami = "ami-903df7ff"
  20. #Settings AWS ELB
  21. aws_elb_api_port = 443
  22. k8s_secure_api_port = 443