1
0
mirror of https://github.com/rancher/quickstart.git synced 2026-02-05 12:45:15 +01:00
Files
quickstart/neuvector/aws/output.tf
Bastian Hofmann 05285e8230 Add NeuVector AWS quickstart (#208)
This restructures the repository slightly to cleanly distinguish between Rancher and NeuVector quickstarts
2022-06-10 15:46:04 +02:00

12 lines
222 B
HCL

output "neuvector_url" {
value = local.neuvector_hostname
}
output "rancher_url" {
value = var.install_rancher ? local.rancher_hostname : null
}
output "node_ip" {
value = aws_instance.neuvector_server.public_ip
}