This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
outputs.tf
139 lines (109 loc) · 3.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
######################################################
# activity tracker
######################################################
output "atr_id" {
description = "Activity tracker id"
value = concat(module.activity_tracker_atr_instance[*].id, [""])[0]
}
output "ats_id" {
description = "Activity tracker id"
value = concat(module.activity_tracker_ats_instance[*].id, [""])[0]
}
output "atr_guid" {
description = "The GUID of the activity tracker"
value = concat(module.activity_tracker_atr_instance[*].guid, [""])[0]
}
output "ats_guid" {
description = "The GUID of the activity tracker"
value = concat(module.activity_tracker_ats_instance[*].guid, [""])[0]
}
output "atr_key_id" {
description = "Activity tracker key id"
value = concat(module.activity_tracker_atr_instance[*].key_id, [""])[0]
}
output "ats_key_id" {
description = "Activity tracker key id"
value = concat(module.activity_tracker_ats_instance[*].key_id, [""])[0]
}
output "atr_key_guid" {
description = "Activity tracker key guid"
value = concat(module.activity_tracker_atr_instance[*].key_guid, [""])[0]
}
output "ats_key_guid" {
description = "Activity tracker key guid"
value = concat(module.activity_tracker_ats_instance[*].key_guid, [""])[0]
}
output "atr_key_credentials" {
description = "Activity tracker key credentials"
value = concat(module.activity_tracker_atr_instance[*].key_credentials, [""])[0]
}
output "ats_key_credentials" {
description = "Activity tracker key credentials"
value = concat(module.activity_tracker_ats_instance[*].key_credentials, [""])[0]
}
######################################################
# Logging
######################################################
output "str_logdna_id" {
description = "logdna id"
value = concat(module.logging_str_instance[*].id, [""])[0]
}
output "sts_logdna_id" {
description = "logdna id"
value = concat(module.logging_sts_instance[*].id, [""])[0]
}
output "str_logdna_guid" {
description = "The GUID of the logdna"
value = concat(module.logging_str_instance[*].guid, [""])[0]
}
output "sts_logdna_guid" {
description = "The GUID of the logdna"
value = concat(module.logging_sts_instance[*].guid, [""])[0]
}
output "str_logdna_key_id" {
description = "logdna key id"
value = concat(module.logging_str_instance[*].key_id, [""])[0]
}
output "sts_logdna_key_id" {
description = "logdna key id"
value = concat(module.logging_sts_instance[*].key_id, [""])[0]
}
output "str_logdna_key_guid" {
description = "logdna key guid"
value = concat(module.logging_str_instance[*].key_guid, [""])[0]
}
output "sts_logdna_key_guid" {
description = "logdna key guid"
value = concat(module.logging_sts_instance[*].key_guid, [""])[0]
}
output "str_logdna_key_credentials" {
description = "logdna key credentials"
value = concat(module.logging_str_instance[*].key_credentials, [""])[0]
}
output "sts_logdna_key_credentials" {
description = "logdna key credentials"
value = concat(module.logging_sts_instance[*].key_credentials, [""])[0]
}
######################################################
# monitoring
######################################################
output "monitoring_id" {
description = "monitoring id"
value = concat(module.monitoring_instance[*].id, [""])[0]
}
output "monitoring_guid" {
description = "The GUID of the monitoring"
value = concat(module.monitoring_instance[*].guid, [""])[0]
}
output "monitoring_key_id" {
description = "monitoring key id"
value = concat(module.monitoring_instance[*].key_id, [""])[0]
}
output "monitoring_key_guid" {
description = "monitoring key guid"
value = concat(module.monitoring_instance[*].key_guid, [""])[0]
}
output "monitoring_key_credentials" {
description = "monitoring key credentials"
value = concat(module.monitoring_instance[*].key_credentials, [""])[0]
}