mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-01-12 21:59:33 +01:00
5eb11f5104
* Replace os_channel variable with os_image to align naming across clouds. Users who set this option to stable, beta, or alpha should now set os_image to coreos-stable, coreos-beta, or coreos-alpha. * Default os_image to coreos-stable. This continues to use the most recent image from the stable channel as always. * Allow Container Linux derivative Flatcar Linux by setting os_image to `flatcar-stable`, `flatcar-beta`, `flatcar-alpha`
22 lines
725 B
HCL
22 lines
725 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}"]
|
|
count = "${var.worker_count}"
|
|
instance_type = "${var.worker_type}"
|
|
os_image = "${var.os_image}"
|
|
disk_size = "${var.disk_size}"
|
|
spot_price = "${var.worker_price}"
|
|
|
|
# configuration
|
|
kubeconfig = "${module.bootkube.kubeconfig}"
|
|
ssh_authorized_key = "${var.ssh_authorized_key}"
|
|
service_cidr = "${var.service_cidr}"
|
|
cluster_domain_suffix = "${var.cluster_domain_suffix}"
|
|
clc_snippets = "${var.worker_clc_snippets}"
|
|
}
|