-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathexample.tfvars
45 lines (36 loc) · 1.89 KB
/
example.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# AWS region where should the Minikube be deployed
aws_region = "eu-central-1"
# Name for role, policy and cloud formation stack (without DBG-DEV- prefix)
cluster_name = "my-minikube"
# Instance type
aws_instance_type = "t2.medium"
# SSH key for the machine
ssh_public_key = "~/.ssh/id_rsa.pub"
# Subnet ID where the minikube should run
aws_subnet_id = "subnet-8a3517f8"
# DNS zone where the domain is placed
hosted_zone = "my-domain.com"
hosted_zone_private = false
# AMI image to use (if empty or not defined, latest CentOS 7 will be used)
#ami_image_id = "ami-b81dbfc5"
# Tags
tags = {
Application = "Minikube"
}
# Kubernetes Addons
# Supported addons:
#
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/storage-class.yaml
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/csi-driver.yaml
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/heapster.yaml
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/dashboard.yaml
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/external-dns.yaml
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/ingress.yaml (External ELB load balancer)
# https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/ingress-internal.yaml (Internal ELB loadbalancer)
addons = [
"https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/storage-class.yaml",
"https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/csi-driver.yaml",
"https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/metrics-server.yaml",
"https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/dashboard.yaml",
"https://raw.githubusercontent.com/scholzj/terraform-aws-minikube/master/addons/external-dns.yaml"
]