-
Notifications
You must be signed in to change notification settings - Fork 6
/
outputs.tf
103 lines (80 loc) · 1.93 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
output "bigiqLicenseManager" {
value = "${var.bigiqLicenseManager}"
}
output "aws_instance.bigiq.public_ip" {
value = "${aws_instance.bigiq.public_ip}"
}
output "elb_dns_name" {
value = "${aws_elb.example.dns_name}"
}
#Disabled output of autoscale elb dns names because these variables are not available until <cloudformation>.tf.dormant => <cloudformation>.tf
/*
output "appInternalDnsName_ltm_autoscale" {
value = "${aws_elb.f5-autoscale-ltm-elb.dns_name}"
}
output "appInternalDnsName_waf_autoscale" {
value = "${aws_elb.f5-autoscale-waf-elb.dns_name}"
}
*/
output "vpc-id" {
value = "${aws_vpc.terraform-vpc.id}"
}
output "vpc-public-d" {
value = "${aws_subnet.public-d.cidr_block}"
}
output "vpc-public-d-id" {
value = "${aws_subnet.public-d.id}"
}
output "vpc-private-d" {
value = "${aws_subnet.private-d.cidr_block}"
}
output "vpc-private-d-id" {
value = "${aws_subnet.private-d.id}"
}
output "vpc-public-e" {
value = "${aws_subnet.public-d.cidr_block}"
}
output "vpc-public-e-id" {
value = "${aws_subnet.public-d.id}"
}
output "vpc-private-e" {
value = "${aws_subnet.private-d.cidr_block}"
}
output "vpc-private-e-id" {
value = "${aws_subnet.private-d.id}"
}
output "sshKey" {
value = "${var.aws_keypair}"
}
output "bigipExternalSecurityGroup" {
value = "${aws_security_group.elb.id}"
}
output "bigipManagementSecurityGroup" {
value = "${aws_security_group.f5_management.id}"
}
/*
output "licenseKey1" {
value = "${var.licenseKey1}"
}
output "licenseKey2" {
value = "${var.licenseKey2}"
}
output "bigiqLicense" {
value = "${var.bigiqLicense}"
}
*/
output "managementSubnetAz1" {
value = "${aws_subnet.f5-management-d.id}"
}
output "managementSubnetAz2" {
value = "${aws_subnet.f5-management-e.id}"
}
output "restrictedSrcAddress" {
value = "0.0.0.0/0"
}
output ssl_certificate_id {
value = "${aws_iam_server_certificate.elb_cert.arn}"
}
output "**aws_alias**" {
value = "${var.aws_alias}"
}