video-iac/terraform/lke.tf

49 lines
751 B
HCL

resource "linode_lke_cluster" "stg-video-cluster" {
label = "stg-video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["staging"]
pool {
type = "g6-standard-2"
count = 1
}
# WebRTC-BE pool
pool {
type = "g6-standard-2"
count = 1
}
# Coturn pool
pool {
type = "g6-standard-2"
count = 1
}
}
resource "linode_lke_cluster" "prd-video-cluster" {
label = "prd-video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["production"]
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
}
}