forked from aws-ia/terraform-aws-amazon-vpc-lattice-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
26 lines (21 loc) · 941 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
# --- examples/service_network/outputs.tf ---
output "service_network_id" {
description = "VPC Lattice service network ID."
value = module.vpclattice_service_network_without_policy.service_network.id
}
output "service_network_arn" {
description = "VPC Lattice service network ARN."
value = module.vpclattice_service_network_without_policy.service_network.arn
}
output "service_network_log_subscriptions" {
description = "VPC Lattice service network log subscriptions."
value = module.vpclattice_service_network_without_policy.service_network_log_subscriptions
}
output "service_network" {
description = "VPC Lattice service network (full output)."
value = module.vpclattice_service_network_with_policy.service_network
}
output "vpc_associations" {
description = "VPC Lattice VPC association IDs."
value = { for k, v in module.vpclattice_vpc_associations.vpc_associations : k => v.id }
}