generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
40 lines (26 loc) · 1.04 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
// Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
output "bastion_ssh_command" {
value = "ssh -i ${var.ssh_private_key_path} opc@${module.bastion.bastion_public_ip}"
}
output "local_jumpbox_tunnel" {
value = "ssh -i ${var.ssh_private_key_path} opc@${module.bastion.bastion_public_ip} -L 3381:${module.instance.private_ip[0]}:3389"
}
/*
# If enabled, current OCVS options will be dislayed in outputs
output "supported_sddc_skus" {
value = data.oci_ocvp_supported_skus.supported_skus[*].items
}
output "sddc_sowtware_versions" {
value = data.oci_ocvp_supported_vmware_software_versions.supported_vmware_software_versions[*].items
}
*/
/*
# If enabled, sensitive information will be stored in state file.
output "vcenter_username" {
value = module.sddc_cluster.vcenter_username
}
output "vcenter_initial_password" {
value = module.sddc_cluster.vcenter_initial_password
}
*/