video-iac/terraform/lke.tf

24 lines
362 B
HCL

resource "linode_lke_cluster" "my-cluster" {
label = "video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["staging"]
pool {
type = "g6-standard-2"
count = 3
}
# WebRTC-BE pool
pool {
type = "g6-standard-2"
count = 3
}
# Coturn pool
pool {
type = "g6-standard-2"
count = 3
}
}