Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nanux committed Mar 22, 2022
1 parent b7d49d8 commit cf9d37d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.0.2

**Release date:** 2022-03-22

* Fixed provider versions


## 1.0.1

**Release date:** 2022-02-07
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/userguide/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Set up a user with an administrator IAM role. See [Configuration basics — AWS
Clone the `data-center-terraform` project repository from GitHub:

```shell
git clone -b 1.0.0 https://github.com/atlassian-labs/data-center-terraform.git && cd data-center-terraform
git clone -b 1.0.2 https://github.com/atlassian-labs/data-center-terraform.git && cd data-center-terraform
```

## 3. Configure the infrastructure
Expand Down
14 changes: 14 additions & 0 deletions providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@ locals {
cluster_name = format("atlas-%s-cluster", var.environment_name)
}

terraform {
required_providers {
aws = {
version = "~> 3.74"
}
kubernetes = {
version = "~> 2.7"
}
helm = {
version = "~> 2.4"
}
}
}

provider "aws" {
region = var.region
// This will allow an AWS provider to add the resource tags to every AWS resources except ASG resources (See https://learn.hashicorp.com/tutorials/terraform/aws-default-tags?in=terraform/aws)
Expand Down

0 comments on commit cf9d37d

Please sign in to comment.