mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-01-12 21:59:33 +01:00
c565f9fd47
* This change affects users who use worker pools on AWS, GCP, or Azure with a Container Linux derivative * Rename worker pool modules' `count` variable to `worker_count`, because `count` will be a reserved variable name in Terraform v0.12
24 lines
882 B
HCL
24 lines
882 B
HCL
module "workers" {
|
|
source = "./workers"
|
|
name = "${var.cluster_name}"
|
|
|
|
# Azure
|
|
resource_group_name = "${azurerm_resource_group.cluster.name}"
|
|
region = "${azurerm_resource_group.cluster.location}"
|
|
subnet_id = "${azurerm_subnet.worker.id}"
|
|
security_group_id = "${azurerm_network_security_group.worker.id}"
|
|
backend_address_pool_id = "${azurerm_lb_backend_address_pool.worker.id}"
|
|
|
|
worker_count = "${var.worker_count}"
|
|
vm_type = "${var.worker_type}"
|
|
os_image = "${var.os_image}"
|
|
priority = "${var.worker_priority}"
|
|
|
|
# configuration
|
|
kubeconfig = "${module.bootkube.kubeconfig-kubelet}"
|
|
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}"
|
|
}
|