ca8a9c600a
* Dynamically retrieve aws_bastion_ami latest reference by querying AWS rather than hard coded * Dynamically retrieve the list of availability_zones instead of needing to have them hard coded * Limit availability zones to first 2, using slice extrapolation function * Replace the need for hardcoded variable "aws_cluster_ami" by the data provided by Terraform * Move ami choosing to vars, so people don't need to edit create infrastructure if they want another vendor image (as suggested by @atoms) * Make name of the data block agnostic of distribution, given there are more than one distribution supported * Add documentation about other distros being supported and what to change in which location to make these changes
33 lines
635 B
HCL
33 lines
635 B
HCL
#Global Vars
|
|
aws_cluster_name = "devtest"
|
|
|
|
#VPC Vars
|
|
aws_vpc_cidr_block = "10.250.192.0/18"
|
|
aws_cidr_subnets_private = ["10.250.192.0/20","10.250.208.0/20"]
|
|
aws_cidr_subnets_public = ["10.250.224.0/20","10.250.240.0/20"]
|
|
|
|
#Bastion Host
|
|
aws_bastion_size = "t2.medium"
|
|
|
|
|
|
#Kubernetes Cluster
|
|
|
|
aws_kube_master_num = 3
|
|
aws_kube_master_size = "t2.medium"
|
|
|
|
aws_etcd_num = 3
|
|
aws_etcd_size = "t2.medium"
|
|
|
|
aws_kube_worker_num = 4
|
|
aws_kube_worker_size = "t2.medium"
|
|
|
|
#Settings AWS ELB
|
|
|
|
aws_elb_api_port = 6443
|
|
k8s_secure_api_port = 6443
|
|
kube_insecure_apiserver_address = "0.0.0.0"
|
|
|
|
default_tags = {
|
|
# Env = "devtest"
|
|
# Product = "kubernetes"
|
|
}
|