95 lines
2.9 KiB
HCL
95 lines
2.9 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_id" {
|
|
description = "The name of the EKS cluster"
|
|
value = module.eks_cluster.eks_cluster_id
|
|
}
|
|
|
|
output "eks_cluster_arn" {
|
|
description = "The Amazon Resource Name (ARN) of the EKS 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_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
|
|
}
|
|
|
|
output "eks_fargate_profile_role_arn" {
|
|
description = "ARN of the EKS Fargate Profile IAM role"
|
|
value = module.eks_fargate_profile.eks_fargate_profile_role_arn
|
|
}
|
|
|
|
output "eks_fargate_profile_role_name" {
|
|
description = "Name of the EKS Fargate Profile IAM role"
|
|
value = module.eks_fargate_profile.eks_fargate_profile_role_name
|
|
}
|
|
|
|
output "eks_fargate_profile_id" {
|
|
description = "EKS Cluster name and EKS Fargate Profile name separated by a colon"
|
|
value = module.eks_fargate_profile.eks_fargate_profile_id
|
|
}
|
|
|
|
output "eks_fargate_profile_arn" {
|
|
description = "Amazon Resource Name (ARN) of the EKS Fargate Profile"
|
|
value = module.eks_fargate_profile.eks_fargate_profile_arn
|
|
}
|
|
|
|
output "eks_fargate_profile_status" {
|
|
description = "Status of the EKS Fargate Profile"
|
|
value = module.eks_fargate_profile.eks_fargate_profile_status
|
|
}
|