-
Notifications
You must be signed in to change notification settings - Fork 141
/
output.tf
93 lines (68 loc) · 2.8 KB
/
output.tf
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# ################################################################################
# # EKS Cluster
# ################################################################################
output "cluster_arn" {
description = "The Amazon Resource Name (ARN) of the cluster"
value = module.eks.cluster_arn
}
output "cluster_certificate_authority_data" {
description = "Base64 encoded certificate data required to communicate with the cluster"
value = module.eks.cluster_certificate_authority_data
}
output "cluster_endpoint" {
description = "Endpoint for your Kubernetes API server"
value = module.eks.cluster_endpoint
}
output "oidc_provider" {
description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
value = module.eks.oidc_provider
}
output "oidc_provider_arn" {
description = "The ARN of the OIDC Provider if `enable_irsa = true`"
value = module.eks.oidc_provider_arn
}
# ################################################################################
# # VPC
# ################################################################################
output "vpc_id" {
description = "The ID of the VPC"
value = module.vpc.vpc_id
}
output "private_subnets" {
description = "List of IDs of private subnets"
value = module.vpc.private_subnets
}
################################################################################
# Prometheus Workspace
################################################################################
# output "prometheus_workspace_arn" {
# description = "Amazon Resource Name (ARN) of the workspace"
# value = module.prometheus.workspace_arn
# }
# output "prometheus_workspace_id" {
# description = "Identifier of the workspace"
# value = module.prometheus.workspace_id
# }
# output "workspace_prometheus_endpoint" {
# description = "Prometheus endpoint available for this workspace"
# value = module.prometheus.workspace_prometheus_endpoint
# }
# ################################################################################
# # Grafana Workspace
# ################################################################################
# output "grafana_workspace_arn" {
# description = "The Amazon Resource Name (ARN) of the Grafana workspace"
# value = module.managed_grafana.workspace_arn
# }
# output "grafana_workspace_id" {
# description = "The ID of the Grafana workspace"
# value = module.managed_grafana.workspace_id
# }
# output "grafana_workspace_endpoint" {
# description = "The endpoint of the Grafana workspace"
# value = module.managed_grafana.workspace_endpoint
# }
# output "workspace_grafana_version" {
# description = "The version of Grafana running on the workspace"
# value = module.managed_grafana.workspace_grafana_version
# }