mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-25 16:29:35 +01:00
afac46e39a
* Originally, poseidon/terraform-render-bootstrap generated TLS certificates, manifests, and cluster "assets" written to local disk (`asset_dir`) during terraform apply cluster bootstrap * Typhoon v1.17.0 introduced bootstrapping using only Terraform state to store cluster assets, to avoid ever writing sensitive materials to disk and improve automated use-cases. `asset_dir` was changed to optional and defaulted to "" (no writes) * Typhoon v1.18.0 deprecated the `asset_dir` variable, removed docs, and announced it would be deleted in future. * Add Terraform output `assets_dir` map * Remove the `asset_dir` variable Cluster assets are now stored in Terraform state only. For those who wish to write those assets to local files, this is possible doing so explicitly. ``` resource local_file "assets" { for_each = module.yavin.assets_dist filename = "some-assets/${each.key}" content = each.value } ``` Related: * https://github.com/poseidon/typhoon/pull/595 * https://github.com/poseidon/typhoon/pull/678
61 lines
1.4 KiB
HCL
61 lines
1.4 KiB
HCL
output "kubeconfig-admin" {
|
|
value = module.bootstrap.kubeconfig-admin
|
|
}
|
|
|
|
# Outputs for Kubernetes Ingress
|
|
|
|
output "ingress_dns_name" {
|
|
value = aws_lb.nlb.dns_name
|
|
description = "DNS name of the network load balancer for distributing traffic to Ingress controllers"
|
|
}
|
|
|
|
output "ingress_zone_id" {
|
|
value = aws_lb.nlb.zone_id
|
|
description = "Route53 zone id of the network load balancer DNS name that can be used in Route53 alias records"
|
|
}
|
|
|
|
# Outputs for worker pools
|
|
|
|
output "vpc_id" {
|
|
value = aws_vpc.network.id
|
|
description = "ID of the VPC for creating worker instances"
|
|
}
|
|
|
|
output "subnet_ids" {
|
|
value = aws_subnet.public.*.id
|
|
description = "List of subnet IDs for creating worker instances"
|
|
}
|
|
|
|
output "worker_security_groups" {
|
|
value = [aws_security_group.worker.id]
|
|
description = "List of worker security group IDs"
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = module.bootstrap.kubeconfig-kubelet
|
|
}
|
|
|
|
# Outputs for custom load balancing
|
|
|
|
output "nlb_id" {
|
|
description = "ARN of the Network Load Balancer"
|
|
value = aws_lb.nlb.id
|
|
}
|
|
|
|
output "worker_target_group_http" {
|
|
description = "ARN of a target group of workers for HTTP traffic"
|
|
value = module.workers.target_group_http
|
|
}
|
|
|
|
output "worker_target_group_https" {
|
|
description = "ARN of a target group of workers for HTTPS traffic"
|
|
value = module.workers.target_group_https
|
|
}
|
|
|
|
# Outputs for debug
|
|
|
|
output "assets_dist" {
|
|
value = module.bootstrap.assets_dist
|
|
}
|
|
|