forked from scaleway/terraform-scaleway-vpc-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
24 lines (20 loc) · 744 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
output "public_gateway_ip_address" {
description = "Address of the public gateway IP."
value = try(scaleway_vpc_public_gateway_ip.main[*].address, null)
}
output "public_gateway_ip_id" {
description = "ID of gateway IP."
value = try(scaleway_vpc_public_gateway_ip.main[*].id, null)
}
output "public_gateway_id" {
description = "ID of public gateways."
value = try(scaleway_vpc_public_gateway.main[*].id, null)
}
output "private_network_id" {
description = "ID of private networks."
value = scaleway_vpc_private_network.main[*].id
}
output "dhcp_reservations" {
description = "ID of VPC Gateway DHCP reservations."
value = data.scaleway_vpc_public_gateway_dhcp_reservation.reservations[*]
}