mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 05:19:32 +01:00
7c3f3ab6d0
* CoreOS Container Linux was deprecated in v1.18.3 * Continue transitioning docs and modules from supporting both CoreOS and Flatcar "variants" of Container Linux to now supporting Flatcar Linux and equivalents Action Required: Update the Flatcar Linux modules `source` to replace `s/container-linux/flatcar-linux`. See docs for examples
25 lines
757 B
HCL
25 lines
757 B
HCL
module "workers" {
|
|
source = "./workers"
|
|
name = var.cluster_name
|
|
|
|
# AWS
|
|
vpc_id = aws_vpc.network.id
|
|
subnet_ids = aws_subnet.public.*.id
|
|
security_groups = [aws_security_group.worker.id]
|
|
worker_count = var.worker_count
|
|
instance_type = var.worker_type
|
|
os_image = var.os_image
|
|
disk_size = var.disk_size
|
|
spot_price = var.worker_price
|
|
target_groups = var.worker_target_groups
|
|
|
|
# configuration
|
|
kubeconfig = module.bootstrap.kubeconfig-kubelet
|
|
ssh_authorized_key = var.ssh_authorized_key
|
|
service_cidr = var.service_cidr
|
|
cluster_domain_suffix = var.cluster_domain_suffix
|
|
snippets = var.worker_snippets
|
|
node_labels = var.worker_node_labels
|
|
}
|
|
|