-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (30 loc) · 809 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
36
37
38
39
output "VPN_Endpoint" {
value = packet_device.router.access_public_ipv4
}
output "VPN_PSK" {
value = random_string.ipsec_psk.result
}
output "VPN_User" {
value = var.vpn_user
}
output "VPN_Password" {
value = random_string.vpn_pass.result
}
output "vCenter_FQDN" {
value = "vcva.packet.local"
}
output "vCenter_Username" {
value = "[email protected]"
}
output "vCenter_Password" {
value = random_string.sso_password.result
}
output "vCenter_Appliance_Root_Password" {
value = random_string.vcenter_password.result
}
output "KSA_Token_Location" {
value = "The user cluster KSA Token (for logging in from GCP) is located at ./ksa_token.txt"
}
output "SSH_Key_Location" {
value = "An SSH Key was created for this environment, it is saved at ~/.ssh/${local.ssh_key_name}"
}