Skip to content

Commit a5b1ab5

Browse files
committed
feat: Make the module compatible with terraform 0.13
1 parent 83a9d57 commit a5b1ab5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

versions.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
terraform {
2-
required_version = "~> 0.12.20"
2+
required_version = ">= 0.12.20"
33

44
required_providers {
5-
aws = ">= 2.60"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 2.60"
8+
}
69
}
710
}

0 commit comments

Comments
 (0)