Skip to content

Commit

Permalink
use minimum versions for provider pinning
Browse files Browse the repository at this point in the history
  • Loading branch information
woz5999 committed Sep 2, 2020
1 parent 3efec09 commit 56429ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ terraform {
required_version = ">= 0.12.0, < 0.14.0"

required_providers {
aws = "~> 2.0"
local = "~> 1.2"
null = "~> 2.0"
aws = ">= 2.0"
local = ">= 1.2"
null = ">= 2.0"
}
}

0 comments on commit 56429ee

Please sign in to comment.