Skip to content

Commit e7315c0

Browse files
authored
Merge pull request #220 from cisagov/improvement/loosen-version-restrictions
Loosen version restrictions
2 parents d0a08ae + c9d0d35 commit e7315c0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ module "example" {
3535

3636
| Name | Version |
3737
|------|---------|
38-
| terraform | ~> 1.1 |
39-
| aws | ~> 4.9 |
38+
| terraform | >= 1.1 |
39+
| aws | >= 4.9 |
4040

4141
## Providers ##
4242

4343
| Name | Version |
4444
|------|---------|
45-
| aws | ~> 4.9 |
45+
| aws | >= 4.9 |
4646

4747
## Modules ##
4848

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ terraform {
1414
# for more information about the S3 bucket refactor.
1515
aws = {
1616
source = "hashicorp/aws"
17-
version = "~> 4.9"
17+
version = ">= 4.9"
1818
}
1919
}
2020

2121
# Version 1.1 of Terraform is the first version to support the
2222
# nullable key in variable definitions.
23-
required_version = "~> 1.1"
23+
required_version = ">= 1.1"
2424
}

0 commit comments

Comments
 (0)