-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
105 lines (84 loc) · 3.53 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
104
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC ID"
}
output "elastic_beanstalk_application_name" {
value = module.elastic_beanstalk_application.elastic_beanstalk_application_name
description = "Elastic Beanstalk Application name"
}
output "elastic_beanstalk_environment_hostname" {
value = module.elastic_beanstalk_environment.hostname
description = "DNS hostname"
}
output "elastic_beanstalk_environment_id" {
description = "ID of the Elastic Beanstalk environment"
value = module.elastic_beanstalk_environment.id
}
output "elastic_beanstalk_environment_name" {
value = module.elastic_beanstalk_environment.name
description = "Name"
}
output "elastic_beanstalk_environment_security_group_id" {
value = module.elastic_beanstalk_environment.security_group_id
description = "Security group id"
}
output "elastic_beanstalk_environment_elb_zone_id" {
value = module.elastic_beanstalk_environment.elb_zone_id
description = "ELB zone id"
}
output "elastic_beanstalk_environment_ec2_instance_profile_role_name" {
value = module.elastic_beanstalk_environment.ec2_instance_profile_role_name
description = "Instance IAM role name"
}
output "elastic_beanstalk_environment_tier" {
description = "The environment tier"
value = module.elastic_beanstalk_environment.tier
}
output "elastic_beanstalk_environment_application" {
description = "The Elastic Beanstalk Application specified for this environment"
value = module.elastic_beanstalk_environment.application
}
output "elastic_beanstalk_environment_setting" {
description = "Settings specifically set for this environment"
value = module.elastic_beanstalk_environment.setting
}
output "elastic_beanstalk_environment_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 = module.elastic_beanstalk_environment.all_settings
}
output "elastic_beanstalk_environment_endpoint" {
description = "Fully qualified DNS name for the environment"
value = module.elastic_beanstalk_environment.endpoint
}
output "elastic_beanstalk_environment_autoscaling_groups" {
description = "The autoscaling groups used by this environment"
value = module.elastic_beanstalk_environment.autoscaling_groups
}
output "elastic_beanstalk_environment_instances" {
description = "Instances used by this environment"
value = module.elastic_beanstalk_environment.instances
}
output "elastic_beanstalk_environment_launch_configurations" {
description = "Launch configurations in use by this environment"
value = module.elastic_beanstalk_environment.launch_configurations
}
output "elastic_beanstalk_environment_load_balancers" {
description = "Elastic Load Balancers in use by this environment"
value = module.elastic_beanstalk_environment.load_balancers
}
output "elastic_beanstalk_environment_queues" {
description = "SQS queues in use by this environment"
value = module.elastic_beanstalk_environment.queues
}
output "elastic_beanstalk_environment_triggers" {
description = "Autoscaling triggers in use by this environment"
value = module.elastic_beanstalk_environment.triggers
}