forked from zimosworld/terraform-aws-beanstalk-clb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
71 lines (57 loc) · 2.44 KB
/
output.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
#--------------------------------------------------------------
#
# Beanstalk Environment Output
#
#--------------------------------------------------------------
output "id" {
description = "ID of the Elastic Beanstalk environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.id
}
output "name" {
description = "Name of the Elastic Beanstalk Environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.name
}
output "description" {
description = "Description of the Elastic Beanstalk Environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.description
}
output "tier" {
description = "The environment tier specified."
value = aws_elastic_beanstalk_environment.beanstalk_environment.tier
}
output "application" {
description = "The Elastic Beanstalk Application specified for this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.application
}
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.beanstalk_environment.all_settings
}
output "cname" {
description = "Fully qualified DNS name for the Environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.cname
}
output "autoscaling_groups" {
description = "The autoscaling groups used by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.autoscaling_groups
}
output "instances" {
description = "Instances used by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.instances
}
output "launch_configurations" {
description = "Launch configurations in use by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.launch_configurations
}
output "load_balancers" {
description = "Elastic load balancers in use by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.load_balancers
}
output "queues" {
description = "SQS queues in use by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.queues
}
output "triggers" {
description = "Autoscaling triggers in use by this environment."
value = aws_elastic_beanstalk_environment.beanstalk_environment.triggers
}