Skip to content

Commit 2163301

Browse files
warrenbrownosterman
authored andcommitted
Output Elastic Load Balancers (#73)
* Allow aws:elasticbeanstalk:managedactions toggling * Remove duplicate DeploymentPolicy setting * Add support for CloudWatch health log streaming * Updated documentation * Rebuild README * Add all beanstalk outputs * Documentation updates * Add description variable and fix for boolean values * Remove description output It is listed in the documentation but fails every time. It isn’t a critical output anyway. Error: Error running plan: 1 error(s) occurred: * module.elastic_beanstalk_environment.output.description: Resource 'aws_elastic_beanstalk_environment.default' does not have attribute 'description' for variable 'aws_elastic_beanstalk_environment.default.description' * Documentation update * Updated enable_managed_actions documentation * tf fmt * Added ALB ARN output * Rebuilt readme to show changes
1 parent c546ab6 commit 2163301

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ Available targets:
146146
| cname | Fully qualified DNS name for the environment. |
147147
| ec2_instance_profile_role_name | Instance IAM role name |
148148
| elb_dns_name | ELB technical host |
149+
| elb_load_balancers | Elastic Load Balancers in use by this environment. |
149150
| elb_zone_id | ELB zone id |
150151
| host | DNS hostname |
151152
| id | ID of the Elastic Beanstalk environment. |

docs/terraform.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
| cname | Fully qualified DNS name for the environment. |
8484
| ec2_instance_profile_role_name | Instance IAM role name |
8585
| elb_dns_name | ELB technical host |
86+
| elb_load_balancers | Elastic Load Balancers in use by this environment. |
8687
| elb_zone_id | ELB zone id |
8788
| host | DNS hostname |
8889
| id | ID of the Elastic Beanstalk environment. |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,8 @@ output "triggers" {
8787
description = "Autoscaling triggers in use by this environment."
8888
value = "${aws_elastic_beanstalk_environment.default.triggers}"
8989
}
90+
91+
output "elb_load_balancers" {
92+
description = "Elastic Load Balancers in use by this environment."
93+
value = "${aws_elastic_beanstalk_environment.default.load_balancers}"
94+
}

0 commit comments

Comments
 (0)