-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
85 lines (68 loc) · 2.47 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
output "hostname" {
value = module.dns_hostname.hostname
description = "DNS hostname"
}
output "id" {
description = "ID of the Elastic Beanstalk environment"
value = aws_elastic_beanstalk_environment.default.id
}
output "name" {
value = aws_elastic_beanstalk_environment.default.name
description = "Name"
}
output "security_group_id" {
value = aws_security_group.default.id
description = "Security group id"
}
output "elb_zone_id" {
value = var.alb_zone_id[var.region]
description = "ELB zone id"
}
output "ec2_instance_profile_role_name" {
value = aws_iam_role.ec2.name
description = "Instance IAM role name"
}
output "tier" {
description = "The environment tier"
value = aws_elastic_beanstalk_environment.default.tier
}
output "application" {
description = "The Elastic Beanstalk Application specified for this environment"
value = aws_elastic_beanstalk_environment.default.application
}
output "setting" {
description = "Settings specifically set for this environment"
value = aws_elastic_beanstalk_environment.default.setting
}
output "all_settings" {
description = "List of all option settings configured in the environment. These are a combination of default settings and their overrides from setting in the configuration"
value = aws_elastic_beanstalk_environment.default.all_settings
}
output "endpoint" {
description = "Fully qualified DNS name for the environment"
value = aws_elastic_beanstalk_environment.default.cname
}
output "autoscaling_groups" {
description = "The autoscaling groups used by this environment"
value = aws_elastic_beanstalk_environment.default.autoscaling_groups
}
output "instances" {
description = "Instances used by this environment"
value = aws_elastic_beanstalk_environment.default.instances
}
output "launch_configurations" {
description = "Launch configurations in use by this environment"
value = aws_elastic_beanstalk_environment.default.launch_configurations
}
output "load_balancers" {
description = "Elastic Load Balancers in use by this environment"
value = aws_elastic_beanstalk_environment.default.load_balancers
}
output "queues" {
description = "SQS queues in use by this environment"
value = aws_elastic_beanstalk_environment.default.queues
}
output "triggers" {
description = "Autoscaling triggers in use by this environment"
value = aws_elastic_beanstalk_environment.default.triggers
}