Patrick de Ruiter 6053b9e348
first commit
2020-06-25 09:46:10 +02:00

135 lines
4.1 KiB
HCL

output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC ID"
}
output "eks_cluster_security_group_id" {
description = "ID of the EKS cluster Security Group"
value = module.eks_cluster.security_group_id
}
output "eks_cluster_security_group_arn" {
description = "ARN of the EKS cluster Security Group"
value = module.eks_cluster.security_group_arn
}
output "eks_cluster_security_group_name" {
description = "Name of the EKS cluster Security Group"
value = module.eks_cluster.security_group_name
}
output "eks_cluster_id" {
description = "The name of the cluster"
value = module.eks_cluster.eks_cluster_id
}
output "eks_cluster_arn" {
description = "The Amazon Resource Name (ARN) of the cluster"
value = module.eks_cluster.eks_cluster_arn
}
output "eks_cluster_endpoint" {
description = "The endpoint for the Kubernetes API server"
value = module.eks_cluster.eks_cluster_endpoint
}
output "eks_cluster_version" {
description = "The Kubernetes server version of the cluster"
value = module.eks_cluster.eks_cluster_version
}
output "eks_cluster_identity_oidc_issuer" {
description = "The OIDC Identity issuer for the cluster"
value = module.eks_cluster.eks_cluster_identity_oidc_issuer
}
output "workers_launch_template_id" {
description = "ID of the launch template"
value = module.eks_workers.launch_template_id
}
output "workers_launch_template_arn" {
description = "ARN of the launch template"
value = module.eks_workers.launch_template_arn
}
output "workers_autoscaling_group_id" {
description = "The AutoScaling Group ID"
value = module.eks_workers.autoscaling_group_id
}
output "workers_autoscaling_group_name" {
description = "The AutoScaling Group name"
value = module.eks_workers.autoscaling_group_name
}
output "workers_autoscaling_group_arn" {
description = "ARN of the AutoScaling Group"
value = module.eks_workers.autoscaling_group_arn
}
output "workers_autoscaling_group_min_size" {
description = "The minimum size of the AutoScaling Group"
value = module.eks_workers.autoscaling_group_min_size
}
output "workers_autoscaling_group_max_size" {
description = "The maximum size of the AutoScaling Group"
value = module.eks_workers.autoscaling_group_max_size
}
output "workers_autoscaling_group_desired_capacity" {
description = "The number of Amazon EC2 instances that should be running in the group"
value = module.eks_workers.autoscaling_group_desired_capacity
}
output "workers_autoscaling_group_default_cooldown" {
description = "Time between a scaling activity and the succeeding scaling activity"
value = module.eks_workers.autoscaling_group_default_cooldown
}
output "workers_autoscaling_group_health_check_grace_period" {
description = "Time after instance comes into service before checking health"
value = module.eks_workers.autoscaling_group_health_check_grace_period
}
output "workers_autoscaling_group_health_check_type" {
description = "`EC2` or `ELB`. Controls how health checking is done"
value = module.eks_workers.autoscaling_group_health_check_type
}
output "workers_security_group_id" {
description = "ID of the worker nodes Security Group"
value = module.eks_workers.security_group_id
}
output "workers_security_group_arn" {
description = "ARN of the worker nodes Security Group"
value = module.eks_workers.security_group_arn
}
output "workers_security_group_name" {
description = "Name of the worker nodes Security Group"
value = module.eks_workers.security_group_name
}
output "workers_role_arn" {
description = "ARN of the worker nodes IAM role"
value = module.eks_workers.workers_role_arn
}
output "workers_role_name" {
description = "Name of the worker nodes IAM role"
value = module.eks_workers.workers_role_name
}