-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.hcl
More file actions
24 lines (20 loc) · 934 Bytes
/
env.hcl
File metadata and controls
24 lines (20 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
inputs = {
create_vpc = true
vpc_cidr = "10.0.0.0/16"
enable_nat_gateway = true
single_nat_gateway = true
// Optional existing-network mode:
// create_vpc = false
// vpc_id = "vpc-xxxxxxxx"
// subnets = ["subnet-xxxxxxxx", "subnet-yyyyyyyy"]
rke2_version = "v1.34.5+rke2r1" // official stable channel as of 2026-03-13
instance_type = "t3.large"
associate_public_ip_address = true
controlplane_internal = false
servers = 1
asg = { min = 1, max = 10, desired = 1, suspended_processes = [], termination_policies = ["Default"] }
block_device_mappings = { size = 50, type = "gp2" }
// if you want to setup a mirror for https://registry1.dso.mil container registry, set the following variables
create_registry1_mirror = false
registry1_mirror_proxy_address = "http://44.210.192.97:5000"
}