94 lines
2.6 KiB
HCL
94 lines
2.6 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 "public_subnet_ids" {
|
|
value = module.subnets.public_subnet_ids
|
|
}
|
|
|
|
output "private_subnet_ids" {
|
|
value = module.subnets.private_subnet_ids
|
|
}
|
|
|
|
output "vpc_cidr_block" {
|
|
value = module.vpc.vpc_cidr_block
|
|
description = "VPC ID"
|
|
}
|
|
|
|
output "vpc_id" {
|
|
value = module.vpc.vpc_id
|
|
description = "VPC ID Main VPC"
|
|
}
|
|
|
|
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 "eks_cluster_certificate_authority_data" {
|
|
description = "EKS cluster CA certificate"
|
|
value = module.eks_cluster.eks_cluster_certificate_authority_data
|
|
}
|
|
|
|
output "eks_cluster_auth_token" {
|
|
description = "The token to authenticate to EKS"
|
|
value = module.eks_cluster.eks_cluster_auth_token
|
|
}
|
|
|
|
output "eks_node_group_role_arn" {
|
|
description = "ARN of the worker nodes IAM role"
|
|
value = module.eks_node_group.eks_node_group_role_arn
|
|
}
|
|
|
|
output "eks_node_group_role_name" {
|
|
description = "Name of the worker nodes IAM role"
|
|
value = module.eks_node_group.eks_node_group_role_name
|
|
}
|
|
|
|
output "eks_node_group_id" {
|
|
description = "EKS Cluster name and EKS Node Group name separated by a colon"
|
|
value = module.eks_node_group.eks_node_group_id
|
|
}
|
|
|
|
output "eks_node_group_arn" {
|
|
description = "Amazon Resource Name (ARN) of the EKS Node Group"
|
|
value = module.eks_node_group.eks_node_group_arn
|
|
}
|
|
|
|
output "eks_node_group_resources" {
|
|
description = "List of objects containing information about underlying resources of the EKS Node Group"
|
|
value = module.eks_node_group.eks_node_group_resources
|
|
}
|
|
|
|
output "eks_node_group_status" {
|
|
description = "Status of the EKS Node Group"
|
|
value = module.eks_node_group.eks_node_group_status
|
|
}
|
|
|