generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoutputs.tf
78 lines (63 loc) · 1.98 KB
/
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
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
##############################################################################
# Outputs
##############################################################################
output "cluster_id" {
description = "ID of cluster created"
value = module.fscloud.cluster_id
}
output "cluster_name" {
description = "Name of the created cluster"
value = module.fscloud.cluster_name
}
output "cluster_crn" {
description = "CRN for the created cluster"
value = module.fscloud.cluster_crn
}
output "workerpools" {
description = "Worker pools created"
value = module.fscloud.workerpools
}
output "ocp_version" {
description = "Openshift Version of the cluster"
value = module.fscloud.ocp_version
}
output "cos_crn" {
description = "CRN of the COS instance"
value = module.fscloud.cos_crn
}
output "vpc_id" {
description = "ID of the clusters VPC"
value = module.fscloud.vpc_id
}
output "region" {
description = "Region cluster is deployed in"
value = var.region
}
output "resource_group_id" {
description = "Resource group ID the cluster is deployed in"
value = module.fscloud.resource_group_id
}
output "ingress_hostname" {
description = "The hostname that was assigned to your Ingress subdomain."
value = module.fscloud.ingress_hostname
}
output "private_service_endpoint_url" {
description = "Private service endpoint URL"
value = module.fscloud.private_service_endpoint_url
}
output "master_url" {
description = "The URL of the Kubernetes master."
value = module.fscloud.master_url
}
output "vpe_url" {
description = "The virtual private endpoint URL of the Kubernetes cluster."
value = module.fscloud.vpe_url
}
output "operating_system" {
description = "The operating system of the workers in the default worker pool."
value = module.fscloud.operating_system
}
output "master_status" {
description = "The status of the Kubernetes master."
value = module.fscloud.master_status
}