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 d0a08ae + c9d0d35 commit e7315c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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.1 |
| aws | ~> 4.9 |
| terraform | >= 1.1 |
| aws | >= 4.9 |

## Providers ##

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

## Modules ##

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

# Version 1.1 of Terraform is the first version to support the
# nullable key in variable definitions.
required_version = "~> 1.1"
required_version = ">= 1.1"
}

0 comments on commit e7315c0

Please sign in to comment.