forked from emvaldes/terraform-aviatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (30 loc) · 772 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
##################################################################################
# OUTPUT
##################################################################################
output "aws_elb_public_dns" {
value = aws_elb.web.dns_name
}
output "resources_index" {
value = local.env_index
}
output "cname_record_url" {
value = "http://${local.route53_record}.${var.domain_name}"
}
output "aviatrix_timestamp" {
value = var.aviatrix_timestamp
}
output "aviatrix_engineer" {
value = var.aviatrix_engineer
}
output "aviatrix_contact" {
value = var.aviatrix_contact
}
output "aviatrix_listset" {
value = var.aviatrix_listset
}
output "aviatrix_mapset" {
value = var.aviatrix_mapset
}
output "filebased_parameters" {
value = var.filebased_parameters
}