Files
DetectionLab/AWS/Terraform/outputs.tf
2021-06-27 09:45:12 -07:00

52 lines
837 B
HCL

output "region" {
value = var.region
}
output "logger_public_ip" {
value = aws_instance.logger.public_ip
}
output "logger_ssh_access" {
value = "ssh vagrant@${aws_instance.logger.public_ip} (password=vagrant)"
}
output "dc_public_ip" {
value = aws_instance.dc.public_ip
}
output "wef_public_ip" {
value = aws_instance.wef.public_ip
}
output "win10_public_ip" {
value = aws_instance.win10.public_ip
}
output "ata_url" {
value = local.ata_url
}
output "fleet_url" {
value = local.fleet_url
}
output "splunk_url" {
value = local.splunk_url
}
output "guacamole_url" {
value = local.guacamole_url
}
output "velociraptor_url" {
value = local.velociraptor_url
}
#output "exchange_public_ip" {
# value = module.exchange.exchange_public_ip
#}
#output "exchange_url" {
# value = module.exchange.exchange_url
#}