Skip to content

Commit 4f2ce56

Browse files
author
Brandon O'Connor
committed
added changelog entry and applied terraform fmt to updated outputs.tf fiel
1 parent ff44366 commit 4f2ce56

File tree

2 files changed

+23
-17
lines changed

2 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [2.3.1] - 2017-12-18
9+
10+
### Added
11+
12+
* ARN outputs of listeners for reuse outside the module. (thanks, proj4spes! 👌)
13+
814
## [2.1.1] - 2017-11-27
915

10-
#### Added
16+
### Added
1117

1218
* variable `health_check_matcher` determines a set or range of successful HTTP
1319
status codes for target group health checks (🧀 @mbolek).
1420
* adapted test kitchen configuration to KT 3.0.x.
1521

1622
## [2.1.0] - 2017-11-16
1723

18-
#### Added
24+
### Added
1925

2026
* outputs added for listeners - these can be useful for ECR integration (🍰
2127
@mbolek).
@@ -24,28 +30,28 @@ project adheres to [Semantic Versioning](http://semver.org/).
2430

2531
## [2.0.0] - 2017-11-06
2632

27-
#### Added
33+
### Added
2834

2935
* added `create_log_bucket` and `enable_logging` to help control logging more
3036
granularly.
3137

32-
#### Changed
38+
### Changed
3339

3440
* existing log-related variables made more descriptive (this is the breaking
3541
change)
3642
* S3 policy related test made more explicit (⭐ @antonbabenko)
3743

3844
## [1.0.3] - 2017-10-19
3945

40-
#### Added
46+
### Added
4147

4248
* TravisCI configuration added and now passing.
4349
* badge added to docs.
4450
* permissions section now in the example readme.
4551
* placeholder shell script added for CI deployment. Eventually this should
4652
conditionally release to the registry when those APIs become available.
4753

48-
#### Changed
54+
### Changed
4955

5056
* altered tf variable `aws_region` to `region`.
5157
* replaced hardcoding the region to instead use a random region as retrieved by
@@ -56,7 +62,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
5662

5763
## [1.0.2] - 2017-10-12
5864

59-
#### Added
65+
### Added
6066

6167
* moved data sources to dedicated `data.tf` file.
6268
* `aws_caller_identity` now used to gather account_id rather than using a
@@ -65,7 +71,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
6571
* input variables added for health checks, bucket policy,
6672
force_destroy_log_bucket - increasing flexibility.
6773

68-
#### Changed
74+
### Changed
6975

7076
* altered structure of module to conform to the new
7177
[Terraform registry standards](https://www.terraform.io/docs/registry/modules/publish.html#requirements)
@@ -84,25 +90,25 @@ project adheres to [Semantic Versioning](http://semver.org/).
8490

8591
## [1.0.1] - 2017-09-14
8692

87-
#### Added
93+
### Added
8894

8995
* tag maps can now be provided (thanks @kwach)
9096

91-
#### Changed
97+
### Changed
9298

9399
* optional S3 logging (thanks @marocchino)
94100

95101
## [1.0.0] - 2017-03-16
96102

97-
#### Added
103+
### Added
98104

99105
* Tests and fixtures for ALB components using awspec and test kitchen
100106
* S3 log bucket and policy rendering for logging now in place
101107
* root_principle_id added and referenced through a map for s3 bucket policy
102108
* string lists moved to native list types
103109
* default region removed
104110

105-
#### Changed
111+
### Changed
106112

107113
* Restructured project templates to alb dir to add testing. This is a breaking
108114
change so upping major version.
@@ -111,6 +117,6 @@ project adheres to [Semantic Versioning](http://semver.org/).
111117

112118
## [0.1.0] - 2017-03-09
113119

114-
#### Added
120+
### Added
115121

116122
* Initial release.

outputs.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ output "alb_listener_http_id" {
1919
}
2020

2121
output "alb_listener_http_arn" {
22-
description = "The ARN of the HTTP ALB Listener we created."
23-
value = "${element(concat(aws_alb_listener.frontend_http.*.arn, list("")), 0)}"
22+
description = "The ARN of the HTTP ALB Listener we created."
23+
value = "${element(concat(aws_alb_listener.frontend_http.*.arn, list("")), 0)}"
2424
}
2525

2626
output "alb_listener_https_arn" {
27-
description = "The ARN of the HTTPS ALB Listener we created."
28-
value = "${element(concat(aws_alb_listener.frontend_https.*.arn, list("")), 0)}"
27+
description = "The ARN of the HTTPS ALB Listener we created."
28+
value = "${element(concat(aws_alb_listener.frontend_https.*.arn, list("")), 0)}"
2929
}
3030

3131
output "alb_zone_id" {

0 commit comments

Comments
 (0)