Skip to content

Commit

Permalink
Merge pull request #220 from cisagov/improvement/loosen-version-restr…
Browse files Browse the repository at this point in the history
…ictions

Loosen version restrictions
  • Loading branch information
mcdonnnj authored Nov 8, 2024
2 parents e2722ef + 9d793eb commit 6a12533
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ module "example" {

| Name | Version |
|------|---------|
| terraform | ~> 1.0 |
| aws | ~> 4.9 |
| terraform | >= 1.0 |
| aws | >= 4.9 |

## Providers ##

| Name | Version |
|------|---------|
| aws | ~> 4.9 |
| aws | >= 4.9 |

## Modules ##

Expand Down
5 changes: 2 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ terraform {
# for more information about the S3 bucket refactor.
aws = {
source = "hashicorp/aws"
version = "~> 4.9"
version = ">= 4.9"
}
}

# We want to hold off on 1.1 or higher until we have tested it.
required_version = "~> 1.0"
required_version = ">= 1.0"
}

0 comments on commit 6a12533

Please sign in to comment.