Handle terraform providers in >= 0.14 better

This commit is contained in:
Jason Rothstein 2021-01-16 19:55:36 -06:00
parent bcfb9196a0
commit aa878189d1
3 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -6,6 +6,9 @@
*.tfstate
*.tfstate.*
# .terraform.lock.hcl
**/.terraform.lock.hcl
# Crash log files
crash.log

View File

@ -5,4 +5,5 @@ terraform {
version = ">= 2.3.0"
}
}
required_version = ">= 0.13"
}

View File

@ -1,3 +0,0 @@
terraform {
required_version = ">= 0.13"
}