-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from equinix-labs/update-readme
Update Readme and improve functionality and clarity of the module
- Loading branch information
Showing
13 changed files
with
413 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,60 @@ | ||
|
||
output "ssh_private_key" { | ||
description = "SSH Private key to use to connect to bastion and management hosts over SSH." | ||
value = module.ssh.ssh_private_key | ||
sensitive = false | ||
} | ||
|
||
output "bastion_public_ip" { | ||
description = "The public IP address of the bastion host." | ||
description = "The public IP address of the bastion host. Used for troubleshooting." | ||
value = equinix_metal_device.bastion.access_public_ipv4 | ||
} | ||
output "management_public_ip" { | ||
output "esx01_web_address" { | ||
description = "The web address of the first ESXi host to use in a browser on the management host." | ||
value = "https://${var.esxi_devices["esx01"].name}.${var.zone_name}" | ||
} | ||
output "windows_management_rdp_address" { | ||
description = "The public IP address of the windows management host." | ||
value = equinix_metal_device.management.access_public_ipv4 | ||
} | ||
output "management_password" { | ||
output "windows_management_password" { | ||
description = "Randomly generated password used for the Admin accounts on the management host." | ||
sensitive = true | ||
value = random_password.management.result | ||
} | ||
|
||
output "next_steps" { | ||
description = "Instructions for accessing the management host." | ||
value = "Run `terraform output -raw management_password` to see the management host's admin password and then RDP to the Management host as SYSTEM\\Admin with that password." | ||
output "ssh_private_key" { | ||
description = "Path to the SSH Private key to use to connect to bastion and management hosts over SSH." | ||
value = module.ssh.ssh_private_key | ||
sensitive = false | ||
} | ||
output "cloudbuilder_hostname" { | ||
description = "Cloudbuilder Hostname to use during OVA deployment." | ||
value = var.cloudbuilder_name | ||
} | ||
output "cloudbuilder_ip" { | ||
description = "Cloudbuilder IP to use during OVA deployment." | ||
value = var.cloudbuilder_ip | ||
} | ||
output "cloudbuilder_subnet_mask" { | ||
description = "Cloudbuilder Subnet Mask to use during OVA deployment." | ||
value = cidrnetmask(var.vcf_vrf_networks["bastion"].subnet) | ||
} | ||
output "cloudbuilder_default_gateway" { | ||
description = "Cloudbuilder Default Gateway to use during OVA deployment." | ||
value = cidrhost(var.vcf_vrf_networks["vm-mgmt"].subnet, 1) | ||
} | ||
output "dns_server" { | ||
description = "DNS Server to use during OVA deployment." | ||
value = var.bastion_ip | ||
} | ||
output "dns_domain_name" { | ||
description = "DNS Domain Name to use during OVA deployment." | ||
value = var.zone_name | ||
} | ||
output "dns_domain_search_paths" { | ||
description = "DNS Domain Search Paths to use during OVA deployment." | ||
value = var.zone_name | ||
} | ||
output "ntp_server" { | ||
description = "NTP Server to use during OVA deployment." | ||
value = var.bastion_ip | ||
} | ||
output "cloudbuilder_web_address" { | ||
description = "Cloudbuilder Web Address" | ||
value = "https://${var.cloudbuilder_name}.${var.zone_name}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.