Skip to content

Commit 2384e38

Browse files
authored
Avoid breaking permissions by accidental provider upgrade (#40)
* Add stop sign for avoiding breaking permissions by accidental provider upgrade
1 parent 83d959d commit 2384e38

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

versions.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
21
terraform {
32
required_version = ">= 0.12"
3+
4+
required_providers {
5+
aws = {
6+
version = ">= 2.0.0, < 3.0.0"
7+
}
8+
}
49
}

0 commit comments

Comments
 (0)