-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
31 lines (24 loc) · 977 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
output "aws_eu_central_1_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key admin@${module.aws_eu_central_1.public_ip}"
}
output "aws_eu_west_1_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key admin@${module.aws_eu_west_1.public_ip}"
}
output "aws_us_east_1_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key admin@${module.aws_us_east_1.public_ip}"
}
output "aws_us_west_2_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key admin@${module.aws_us_west_2.public_ip}"
}
output "az_japaneast_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key azureuser@${module.az_japaneast.public_ip}"
}
output "az_norwayeast_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key azureuser@${module.az_norwayeast.public_ip}"
}
# output "gcp_eu_central1_ssh_connect" {
# value = "ssh -i ~/.ssh/cloud-key tf-serviceaccount@${module.gcp_eu_central1.public_ip}"
# }
output "gcp_us_central1_ssh_connect" {
value = "ssh -i ~/.ssh/cloud-key tf-serviceaccount@${module.gcp_us_central1.public_ip}"
}