-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.09 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
output "vpc_id" {
description = "The ID of the VPC"
value = opentelekomcloud_vpc_v1.this.id
}
output "vpc_name" {
description = "The Name of the VPC"
value = opentelekomcloud_vpc_v1.this.name
}
output "vpc_cidr_block" {
description = "The CIDR block of the VPC"
value = opentelekomcloud_vpc_v1.this.cidr
}
output "vpc_enable_snat" {
description = "The SNAT function is enabled"
value = opentelekomcloud_vpc_v1.this.shared
}
output "subnet_id" {
description = "The ID of the Subnet"
value = opentelekomcloud_vpc_subnet_v1.this.subnet_id
}
output "network_id" {
description = "The ID of the Network"
value = opentelekomcloud_vpc_subnet_v1.this.network_id
}
output "subnet_name" {
description = "The Name of the Subnet"
value = opentelekomcloud_vpc_subnet_v1.this.name
}
output "subnet_cidr_block" {
description = "The CIDR block of the Subnet"
value = opentelekomcloud_vpc_subnet_v1.this.cidr
}
output "subnet_dns" {
description = "The DNS name servers of the Subnet"
value = opentelekomcloud_vpc_subnet_v1.this.dns_list
}