Skip to content
This repository has been archived by the owner on Oct 10, 2022. It is now read-only.

Commit

Permalink
updating code to require TF 0.13 and pinning aws + random versions (#21)
Browse files Browse the repository at this point in the history
* updating code to require TF 0.13 and pinning aws + random provider versions

* pinning version of template provider

* update CHANGELOG
  • Loading branch information
Omar-Khawaja authored Aug 13, 2020
1 parent 1728ab5 commit ac97ed4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.2.0 (August 13, 2020)

IMPROVEMENTS:

* Upgrading terraform block syntax for TF version 0.13.0+
* Pinning version number for `aws`, `random`, and `template` providers

## 0.1.5 (July 24, 2020)

IMPROVEMENTS:
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ provider "aws" {
region = "<your AWS region>"
}
provider "random" {
version = "~> 2.2"
}
module "consul_cluster" {
source = "hashicorp/consul-oss/aws"
version = "0.1.0"
Expand Down
16 changes: 15 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# names required TF version
terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
required_providers {
aws = {
source = "hashicorp/aws"
version = "2.70.0"
}
random = {
source = "hashicorp/random"
version = "2.3.0"
}
template = {
source = "hashicorp/template"
version = "2.1.2"
}
}
}

0 comments on commit ac97ed4

Please sign in to comment.