-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
59 lines (45 loc) · 961 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
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
output "app_name" {
value = var.app_name
}
output "humio_protocol" {
value = var.humio_protocol
}
output "humio_host" {
value = var.humio_host
}
output "humio_lambda_log_retention" {
value = var.humio_lambda_log_retention
}
output "humio_lambda_role_permissions_boundary" {
value = var.humio_lambda_role_permissions_boundary
}
output "logs_subscriptions" {
value = var.logs_subscriptions
}
output "metric_conf" {
value = var.metric_conf
}
output "metric_rate_expression" {
value = var.metric_rate_expression
}
output "metric_statistics_conf" {
value = var.metric_statistics_conf
}
output "metric_statistics_rate_expression" {
value = var.metric_statistics_rate_expression
}
output "log_level" {
value = var.log_level
}
output "s3_bucket" {
value = local.bucket_name
}
output "vpc_id" {
value = var.vpc_id
}
output "security_group_ids" {
value = var.security_group_ids
}
output "subnet_ids" {
value = var.subnet_ids
}