Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 470 Bytes

README.md

File metadata and controls

24 lines (23 loc) · 470 Bytes

Provision civo cluster

update token file

Generate a token from civo UI and update the token by creating token.tf file

provider "civo" {
  token  = "TOKEN"
  region = "NYC1"
}

Create cluster

terraform init
terraform plan
terraform apply 

vars file

name             = "demo"
cni              = "cilium"
instance_size    = "g3.k3s.large"
number_of_nodes  = "2"
k8s_applications = "Nginx,argo-cd,metrics-server,cert-manager"