forked from ViktorUJ/cks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.hcl
25 lines (25 loc) · 860 Bytes
/
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
locals {
region = "eu-north-1"
aws = "default"
prefix = "cka-mock"
tags = {
"env_name" = "cka-mock"
"env_type" = "dev"
"manage" = "terraform"
"cost_allocation" = "dev"
"owner" = "[email protected]"
}
k8_version = "1.28.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 = ""
ubuntu_version = "20.04"
ami_id = "" # ami-06410fb0e71718398 - x86 ami-0ff124a3d7381bfec - arm
# ubuntu : 20.04 LTS ami-06410fb0e71718398 22.04 LTS ami-00c70b245f5354c0a ami-0ebb6753c095cb52a - arm
root_volume = {
type = "gp3"
size = "12"
}
}