video-iac/terraform/lke.tf

24 lines
362 B
Terraform
Raw Normal View History

2021-06-25 16:26:10 +00:00
resource "linode_lke_cluster" "my-cluster" {
2021-07-13 17:06:50 +00:00
label = "video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["staging"]
2021-06-25 16:26:10 +00:00
2021-07-13 17:06:50 +00:00
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
}
}