-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathenv.hcl
34 lines (34 loc) · 1.15 KB
/
env.hcl
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
locals {
questions_list="https://github.com/ViktorUJ/cks/blob/master/tasks/ckad/mock/01/README.md"
solutions_scripts="https://github.com/ViktorUJ/cks/tree/master/tasks/ckad/mock/01/worker/files/solutions"
solutions_video="https://youtu.be/yQK7Ca8d-yw"
region = "eu-north-1"
vpc_default_cidr = "10.2.0.0/16"
az_ids = {
"10.2.0.0/19" = "eun1-az3"
"10.2.32.0/19" = "eun1-az2"
}
aws = "default"
prefix = "ckad-mock"
tags = {
"env_name" = "ckad-mock"
"env_type" = "dev"
"manage" = "terraform"
"cost_allocation" = "dev"
"owner" = "[email protected]"
}
k8_version = "1.30.0"
node_type = "spot"
runtime = "containerd" # docker , cri-o , containerd ( need test it )
instance_type = "t4g.medium" # t3.medium - x86 t4g.medium - arm
instance_type_worker = "t4g.small"
key_name = ""
ssh_password_enable = "true" # false | true
access_cidrs = ["0.0.0.0/0"] # "93.177.191.10/32" | "0.0.0.0/0"
ubuntu_version = "20.04"
ami_id = ""
root_volume = {
type = "gp3"
size = "12"
}
}