mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 06:19:33 +01:00
2ba0181dbe
* Replace v0.11 bracket type hints with Terraform v0.12 list expressions * Use expression syntax instead of interpolated strings, where suggested * Update AWS tutorial and worker pools documentation * Define Terraform and plugin version requirements in versions.tf * Require aws ~> 2.7 to support Terraform v0.12 * Require ct ~> 0.3.2 to support Terraform v0.12
24 lines
711 B
HCL
24 lines
711 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.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
|
|
}
|
|
|