mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 21:09:34 +01:00
0ce8dfbb95
* Allow passing a dummy RSA key to Azure to satisfy its obtuse requirements (recommend deleting the corresponding private key) * Then `ssh_authorized_key` can be used to provide Fedora CoreOS or Flatcar Linux with a modern ed25519 public key to set in the authorized_keys via Ignition
27 lines
948 B
HCL
27 lines
948 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.bootstrap.kubeconfig-kubelet
|
|
ssh_authorized_key = var.ssh_authorized_key
|
|
azure_authorized_key = var.azure_authorized_key
|
|
service_cidr = var.service_cidr
|
|
cluster_domain_suffix = var.cluster_domain_suffix
|
|
snippets = var.worker_snippets
|
|
node_labels = var.worker_node_labels
|
|
arch = var.arch
|
|
}
|