kmcgrath / k3s-terraform-modules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

k3s-terraform-modules

Modules for testing and development of k3s with Ocean by Spot

Ocean k3s

Provision master and Ocean workers

module "ocean_k3s_aws" {
  source = "github.com/kmcgrath/k3s-terraform-modules//modules/ocean_k3s_aws"

  ocean_account               = "act-XXXXXX"
  ocean_controller_token      = "SECRET"
  region                      = "us-east-1"
  ssh_key_name                = "my-key"
  cluster_name                = "ocean-k3s"
}

k3s only

Provision master and Ocean workers

module "k3s_aws" {
  source = "github.com/kmcgrath/k3s-terraform-modules//modules/k3s_aws"

  region                      = "us-east-1"
  ssh_key_name                = "my-key"
  worker_count                = 1
}

About


Languages

Language:HCL 100.0%