Azure development

This commit is contained in:
Chris Long
2020-06-14 18:45:18 -07:00
parent a033ea2b60
commit 5791b99c8f
35 changed files with 1236 additions and 17 deletions

35
AWS/Terraform/outputs.tf Normal file
View File

@@ -0,0 +1,35 @@
output "region" {
value = var.region
}
output "logger_public_ip" {
value = aws_instance.logger.public_ip
}
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
}