Skip to content

Commit 82f5a72

Browse files
authored
Fix issue with terraform providers versions (#44)
* Fix issue with terraform providers versions * Update mock_provider.tf * Update mock_provider.tf * Update versions.tf
1 parent 117cbab commit 82f5a72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/test/mock_provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
}
88
local = {
99
source = "hashicorp/local"
10-
version = "2.1.0"
10+
version = ">= 2"
1111
}
1212
}
1313
}

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
}
88
local = {
99
source = "hashicorp/local"
10-
version = ">= 2.2.2"
10+
version = ">= 2"
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)