generated from snowplow-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
74 lines (60 loc) · 2.59 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
output "id" {
description = "The id of the tracking resource"
value = snowplow_track_self_describing_event.telemetry.id
}
output "auto_generated_id" {
description = "The Snowplow OSS auto-generated ID for stitching together entities of the module being tracked"
value = local.auto_generated_id
}
output "collector_uri" {
description = "The Snowplow OSS Collector URI to use in collection of telemetry details"
value = local.collector_uri
}
output "amazon_linux_2_user_data" {
description = "User-data shell chunk for adding telemetry to an Amazon Linux 2 server"
value = local.amazon_linux_2_user_data
}
output "amazon_linux_2_user_data_1" {
description = "User-data shell chunk for adding telemetry to an Amazon Linux 2 server"
value = local.amazon_linux_2_user_data_1
}
output "amazon_linux_2_user_data_2" {
description = "User-data shell chunk for adding telemetry to an Amazon Linux 2 server"
value = local.amazon_linux_2_user_data_2
}
output "amazon_linux_2_user_data_3" {
description = "User-data shell chunk for adding telemetry to an Amazon Linux 2 server"
value = local.amazon_linux_2_user_data_3
}
output "gcp_ubuntu_20_04_user_data" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 20.04 server"
value = local.gcp_ubuntu_20_04_user_data
}
output "gcp_ubuntu_20_04_user_data_1" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 20.04 server"
value = local.gcp_ubuntu_20_04_user_data_1
}
output "gcp_ubuntu_20_04_user_data_2" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 20.04 server"
value = local.gcp_ubuntu_20_04_user_data_2
}
output "gcp_ubuntu_20_04_user_data_3" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 20.04 server"
value = local.gcp_ubuntu_20_04_user_data_3
}
output "azurerm_ubuntu_22_04_user_data" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 22.04 server"
value = local.azurerm_ubuntu_22_04_user_data
}
output "azurerm_ubuntu_22_04_user_data_1" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 22.04 server"
value = local.azurerm_ubuntu_22_04_user_data_1
}
output "azurerm_ubuntu_22_04_user_data_2" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 22.04 server"
value = local.azurerm_ubuntu_22_04_user_data_2
}
output "azurerm_ubuntu_22_04_user_data_3" {
description = "User-data shell chunk for adding telemetry to an Ubuntu 22.04 server"
value = local.azurerm_ubuntu_22_04_user_data_3
}