Skip to content

Commit 6e24c7b

Browse files
Flip order of variable params, moving versioning to adhere to semver
1 parent cbe321d commit 6e24c7b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

CHANGELOG.md

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

7-
## [1.1.0] - 2017-11-06
7+
## [2.0.0] - 2017-11-06
88
#### Added
99
* added `create_log_bucket` and `enable_logging` to help control logging more granularly.
1010

1111
#### Changed
12-
* existing related variables made more descriptive
12+
* existing log-related variables made more descriptive (this is the breaking change)
1313
* S3 policy related test made more explicit (⭐ @antonbabenko)
1414

1515
## [1.0.3] - 2017-10-19
@@ -26,13 +26,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2626
* ruby version bump means `Rhcl` becomes `rhcl`.
2727

2828
## [1.0.2] - 2017-10-12
29-
### Added
29+
#### Added
3030
* moved data sources to dedicated `data.tf` file.
3131
* `aws_caller_identity` now used to gather account_id rather than using a variable.
3232
* tests added for `target_group` and expanded for `alb`.
3333
* input variables added for health checks, bucket policy, force_destroy_log_bucket - increasing flexibility.
3434

35-
### Changed
35+
#### Changed
3636
* altered structure of module to conform to the new [Terraform registry standards](https://www.terraform.io/docs/registry/modules/publish.html#requirements)
3737
* `principle_account_id` (sp) moved to a data source rather than variable map. Spelling corrected.
3838
* removed redundant `/test/alb` directory which had module contents copied. Test kitchen now uses the module itself.
@@ -43,25 +43,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4343
* stringed list variables moved to native lists
4444

4545
## [1.0.1] - 2017-09-14
46-
### Added
46+
#### Added
4747
* tag maps can now be provided (thanks @kwach)
4848

49-
### Changed
49+
#### Changed
5050
* optional S3 logging (thanks @marocchino)
5151

5252
## [1.0.0] - 2017-03-16
53-
### Added
53+
#### Added
5454
* Tests and fixtures for ALB components using awspec and test kitchen
5555
* S3 log bucket and policy rendering for logging now in place
5656
* root_principle_id added and referenced through a map for s3 bucket policy
5757
* string lists moved to native list types
5858
* default region removed
5959

60-
### Changed
60+
#### Changed
6161
* Restructured project templates to alb dir to add testing. This is a breaking change so upping major version.
6262
* Redundant examples dir removed
6363
* Updated documentation
6464

6565
## [0.1.0] - 2017-03-09
66-
### Added
66+
#### Added
6767
* Initial release.

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ variable "health_check_unhealthy_threshold" {
8181
}
8282

8383
variable "create_log_bucket" {
84-
default = false
8584
description = "Create the S3 bucket (named with the log_bucket_name var) and attach a policy to allow ALB logging."
85+
default = false
8686
}
8787

8888
variable "enable_logging" {

0 commit comments

Comments
 (0)