Skip to content

Commit

Permalink
Merge pull request #212 from trussworks/mk-pin-aws-3-0
Browse files Browse the repository at this point in the history
Restrict to 3.x of the aws provider in anticipation of breaking changes
  • Loading branch information
Michael Kania authored Aug 16, 2021
2 parents 22d01c1 + f404e7b commit 5a559d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ module "aws_logs" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.0, < 4.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.0, < 4.0 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ terraform {
required_version = ">= 0.13.0"

required_providers {
aws = ">= 3.0"
aws = ">= 3.0, < 4.0"
}
}

0 comments on commit 5a559d4

Please sign in to comment.