15 lines
302 B
Terraform
15 lines
302 B
Terraform
|
|
output "vpc_id" {
|
||
|
|
description = "ID of the VPC"
|
||
|
|
value = digitalocean_vpc.main.id
|
||
|
|
}
|
||
|
|
|
||
|
|
output "vpc_urn" {
|
||
|
|
description = "URN of the VPC"
|
||
|
|
value = digitalocean_vpc.main.urn
|
||
|
|
}
|
||
|
|
|
||
|
|
output "vpc_ip_range" {
|
||
|
|
description = "IP range of the VPC"
|
||
|
|
value = digitalocean_vpc.main.ip_range
|
||
|
|
}
|