generated from cloud-native-toolkit/template-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
35 lines (30 loc) · 955 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
27
28
29
30
31
32
33
34
35
output "id" {
value = module.openvpn-server.id
description = "The Azure id of the created VPN server"
}
output "vm_public_ip" {
value = module.openvpn-server.vm_public_ip
description = "The public IP address of the created VPN server"
}
output "vm_public_fqdn" {
value = module.openvpn-server.vm_public_fqdn
description = "The FQDN of the public IP address"
}
output "admin_username" {
depends_on = [
module.openvpn-server
]
value = var.admin_username
description = "The administrator username of the created VPN server"
}
output "vm_private_ip" {
value = module.openvpn-server.vm_private_ip
description = "The private IP address of the created VPN server"
}
output "client_config_file" {
depends_on = [
null_resource.download_client_config
]
value = "${path.cwd}/${local.client_config_file}"
description = "The full path and filename of the created VPN client connection file"
}