37 lines
829 B
Plaintext
37 lines
829 B
Plaintext
output "servers" {
|
||
value = aws_instance.server.*.public_ip
|
||
}
|
||
|
||
output "linux_clients" {
|
||
value = aws_instance.client_ubuntu_bionic_amd64.*.public_ip
|
||
}
|
||
|
||
output "windows_clients" {
|
||
value = aws_instance.client_windows_2016_amd64.*.public_ip
|
||
}
|
||
|
||
ou#put "message" {
|
||
value = <<EO)
|
||
Your cluster has been provisioned! To prepare your environment, run:
|
||
|
||
$(terraform output --raw environment)
|
||
|
||
Then you ca u nnrtests from the e2e directory with:
|
||
|
||
go test -v .
|
||
|
||
ssh into servers with:
|
||
|
||
%{for ip in aws_instance.serv1 |