-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathterraform.tfvars
27 lines (19 loc) · 1.03 KB
/
terraform.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
# the cluster_name should be of length less than 15 characters and surrounded by double quotes
cluster_name = "gitpod"
# a route53 zone and certificate request will be created for this domain; surround the domain name within double quotes
domain_name = "your_domain_name.com"
region = "eu-west-1"
# make sure the cidr do not have any conflicts and will have IP ranges enough to split into 5 subnets
vpc_cidr = "10.100.0.0/16"
# should be atleast 2 zones
vpc_availability_zones = ["eu-west-1c", "eu-west-1b"]
# !important!: You need to make sure the image_id below matches your region.
# You can find the list of UBUNTU AMIs here corresponding to the k8s version and your region via
# https://cloud-images.ubuntu.com/docs/aws/eks/
cluster_version = "1.22"
image_id =
create_external_database = true
create_external_storage = true
# if you want to create a separate s3 bucket to use as registry backend,
# set the following to true. You can re-use the above bucket or incluster registry otherwise.
create_external_storage_for_registry_backend = false