Skip to content

Commit b1d7f2a

Browse files
authored
Don't use ~ version spec in modules, use >= instead (#138)
Otherwise, people can't use the higher versions of corresponding modules Fixes #136
1 parent 5d92e90 commit b1d7f2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/aws-workspace-basic/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 5.0"
11+
version = ">= 5.0"
1212
}
1313
}
1414
}

modules/aws-workspace-with-firewall/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88

99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 5.0"
11+
version = ">= 5.0"
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)