Merge pull request #36 from gauravgahlot/version-constraints

Add missing version constraints for providers - null, template
This commit is contained in:
Gianluca Arbezzano 2021-01-12 09:23:49 +01:00 committed by GitHub
commit b385de2b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@ terraform {
version = "~> 3.0.1"
}
null = {
source = "hashicorp/null"
source = "hashicorp/null"
version = "~> 2.1.2"
}
template = {
source = "hashicorp/template"
version = "~> 2.1.2"
}
}
}