forked from codygreen/terraform-aws-bigip-demo
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathoutputs.tf
43 lines (35 loc) · 981 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
32
33
34
35
36
37
38
39
40
41
42
43
output "vpc" {
description = "AWS VPC ID for the created VPC"
value = module.vpc.vpc_id
}
output "bigip_mgmt_public_ips" {
description = "Public IP addresses for the BIG-IP management interfaces"
value = module.bigip.mgmt_public_ips
}
output "bigip_mgmt_port" {
description = "BIG-IP management port"
value = module.bigip.mgmt_port
}
output "bigip_password" {
description = "BIG-IP management password"
value = random_password.password.result
sensitive = true
}
output "jumphost_ip" {
description = "ip address of jump host"
value = module.jumphost.public_ip
}
output "ec2_key_name" {
description = "the key used to communication with ec2 instances"
value = var.ec2_key_name
}
output "ec2_key_file" {
description = "private key to access VMs"
value = var.ec2_key_file
}
output "juiceshop_ip" {
value = aws_eip.juiceshop[*].public_ip
}
output "grafana_ip" {
value = aws_eip.grafana[*].public_ip
}