-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.tf
60 lines (49 loc) · 1.44 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
output "id" {
description = "The SKS node pool ID."
value = module.exoscale_sks_nodepool.id
}
output "created_at" {
description = "The pool creation date."
value = module.exoscale_sks_nodepool.created_at
}
output "instance_pool_id" {
description = "The underlying exoscale_instance_pool ID."
value = module.exoscale_sks_nodepool.instance_pool_id
}
output "state" {
description = "The current pool state."
value = module.exoscale_sks_nodepool.state
}
output "template_id" {
description = "The managed instances template ID."
value = module.exoscale_sks_nodepool.template_id
}
output "version" {
description = "The managed instances version."
value = module.exoscale_sks_nodepool.version
}
# nlb
output "nlb_id" {
description = "The network load balancer (NLB) ID."
value = module.exoscale_nlb.id
}
output "nlb_created_at" {
description = "The NLB creation date."
value = module.exoscale_nlb.created_at
}
output "nlb_ip_address" {
description = "The NLB IPv4 address."
value = module.exoscale_nlb.ip_address
}
output "nlb_services" {
description = "The list of the exoscale_nlb_service (names)."
value = module.exoscale_nlb.services
}
output "nlb_state" {
description = "The current NLB state."
value = module.exoscale_nlb.state
}
output "sks-security-group-id" {
value = module.exoscale_security_group.id
description = "The security group ID."
}