diff --git a/CHANGELOG.md b/CHANGELOG.md index 36f0b3a..4c81393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.0.5] - 2019-03-12 + +### Added +- Pin module to use `terraform-aws-provider v1.60.0` + ## [1.0.4] - 2019-02-22 ### Added diff --git a/lb.tf b/lb.tf index fba5ddf..96f71b4 100644 --- a/lb.tf +++ b/lb.tf @@ -26,7 +26,6 @@ resource "aws_lb_target_group" "apiary_hms_rw_tg" { } tags = "${var.apiary_tags}" - } resource "aws_lb_listener" "hms_rw_listener" { diff --git a/version.tf b/version.tf index e100ab5..9317fba 100644 --- a/version.tf +++ b/version.tf @@ -7,3 +7,7 @@ terraform { required_version = "~> 0.11" } + +provider "aws" { + version = "~> 1.60.0" +}