-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
68 lines (52 loc) · 2.16 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
##############################################################################
# VPC Outputs
##############################################################################
output "vpc_networks" {
description = "VPC network information"
value = module.icse_vpc_network.vpc_networks
}
output "vpc_flow_logs_data" {
description = "Information for Connecting VPC to flow logs using ICSE Flow Logs Module"
value = module.icse_vpc_network.vpc_flow_logs_data
}
output "vpc_network_acls" {
description = "List of network ACLs"
value = local.all_network_acl_list
}
##############################################################################
##############################################################################
# Key Management Outputs
##############################################################################
output "key_management_name" {
description = "Name of key management service"
value = module.icse_vpc_network.key_management_name
}
output "key_management_crn" {
description = "CRN for KMS instance"
value = module.icse_vpc_network.key_management_crn
}
output "key_management_guid" {
description = "GUID for KMS instance"
value = module.icse_vpc_network.key_management_guid
}
output "key_rings" {
description = "Key rings created by module"
value = module.icse_vpc_network.key_rings
}
output "keys" {
description = "List of names and ids for keys created."
value = module.icse_vpc_network.keys
}
##############################################################################
##############################################################################
# Cloud Object Storage Variables
##############################################################################
output "cos_instances" {
description = "List of COS resource instances with shortname, name, id, and crn."
value = module.icse_vpc_network.cos_instances
}
output "cos_buckets" {
description = "List of COS bucket instances with shortname, instance_shortname, name, id, crn, and instance id."
value = module.icse_vpc_network.cos_buckets
}
##############################################################################