-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
49 lines (40 loc) · 1.61 KB
/
outputs.tf
File metadata and controls
49 lines (40 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
output "region" {
value = local.region
description = "string ||| The region where the EKS cluster resides."
}
output "cluster_logs_group" {
value = module.logs.name
description = "string ||| The name of the Cloudwatch log group containing EKS Control Plane logs."
}
output "cluster_arn" {
value = aws_eks_cluster.this.arn
description = "string ||| AWS Arn for EKS Fargate cluster."
}
output "cluster_name" {
value = aws_eks_cluster.this.name
description = "string ||| Name of the EKS Fargate cluster."
}
output "cluster_endpoint" {
value = aws_eks_cluster.this.endpoint
description = "string ||| Endpoint address for EKS Fargate cluster."
}
output "cluster_ca_certificate" {
value = aws_eks_cluster.this.certificate_authority[0].data
description = "string ||| Base64-encoded certificate to connect to cluster."
}
output "fargate_namespace" {
value = local.default_namespace
description = "string ||| Namespace selector for default fargate profile."
}
output "cluster_oidc_issuer" {
value = local.cluster_cert_issuer
description = "string ||| Cluster certificate issuer used by OpenID Connect Provider"
}
output "cluster_openid_provider_arn" {
value = aws_iam_openid_connect_provider.this.arn
description = "string ||| ARN of the OpenID Connect Provider that is used to provide IAM roles with Kubernetes Service Accounts"
}
output "node_security_group_id" {
value = aws_security_group.node.id
description = "string ||| ID of the Security Group that is applied to each node in the EKS cluster. This limits traffic inside the network."
}