generated from clowdhaus/terraform-aws-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathoutputs.tf
56 lines (45 loc) · 1.85 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
################################################################################
# Firewall
################################################################################
output "id" {
description = "The Amazon Resource Name (ARN) that identifies the firewall"
value = module.firewall.id
}
output "arn" {
description = "The Amazon Resource Name (ARN) that identifies the firewall"
value = module.firewall.arn
}
output "status" {
description = "Nested list of information about the current status of the firewall"
value = module.firewall.status
}
output "update_token" {
description = "A string token used when updating a firewall"
value = module.firewall.update_token
}
################################################################################
# Firewall Logging Configuration
################################################################################
output "logging_configuration_id" {
description = "The Amazon Resource Name (ARN) of the associated firewall"
value = module.firewall.logging_configuration_id
}
################################################################################
# Firewall Policy
################################################################################
output "policy_id" {
description = "The Amazon Resource Name (ARN) that identifies the firewall policy"
value = module.policy.id
}
output "policy_arn" {
description = "The Amazon Resource Name (ARN) that identifies the firewall policy"
value = module.policy.arn
}
output "policy_update_token" {
description = "A string token used when updating a firewall policy"
value = module.policy.update_token
}
output "policy_resource_policy_id" {
description = "The Amazon Resource Name (ARN) of the firewall policy associated with the resource policy"
value = module.policy.resource_policy_id
}