-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
32 lines (27 loc) · 983 Bytes
/
outputs.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
output "cluster_id" {
description = "ID of the Kubernetes cluster"
value = module.oke.cluster_id
}
output "cluster_endpoints" {
description = "Endpoints for the Kubernetes cluster"
value = module.oke.cluster_endpoints
}
output "bastion_ids" {
description = "Map of Bastion Service IDs (cp, workers)"
value = {
"cp" = module.bastion_service_control_plane.bastion_id
"workers" = module.bastion_service_workers.bastion_id
}
}
output "nodepool_ids" {
description = "Map of Nodepool names and IDs"
value = module.oke.nodepool_ids
}
output "compartment_id" {
description = "The OCID of the compartment that is using Oracle Cloud's Always Free services"
value = module.compartment.compartment_id
}
output "vcn_id" {
description = "The OCID of the Virtual Cloud Network (VCN) created within the compartment using Oracle Cloud's Always Free services."
value = module.oke.vcn_id
}