diff --git a/examples/basic/versions.tf b/examples/basic/versions.tf deleted file mode 100644 index 85e7e5ba..00000000 --- a/examples/basic/versions.tf +++ /dev/null @@ -1,32 +0,0 @@ -/** - * Copyright 2019 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -terraform { - required_version = ">= 0.13" - required_providers { - google = { - source = "hashicorp/google" - version = ">= 3.53, < 5.0" - } - google-beta = { - source = "hashicorp/google-beta" - version = ">= 3.53, < 5.0" - } - template = { - source = "hashicorp/template" - } - } -} diff --git a/test/setup/versions.tf b/test/setup/versions.tf index afd88e70..eda8241d 100644 --- a/test/setup/versions.tf +++ b/test/setup/versions.tf @@ -19,11 +19,11 @@ terraform { required_providers { google = { source = "hashicorp/google" - version = ">= 3.53, < 5.0" + version = ">= 3.53" } google-beta = { source = "hashicorp/google-beta" - version = ">= 3.53, < 5.0" + version = ">= 3.53" } } } diff --git a/versions.tf b/versions.tf index 9ced1a1f..c82ddada 100644 --- a/versions.tf +++ b/versions.tf @@ -19,12 +19,12 @@ terraform { required_providers { google = { source = "hashicorp/google" - version = ">= 3.53, < 5.0" + version = ">= 3.53, < 6" } google-beta = { source = "hashicorp/google-beta" - version = ">= 3.53, < 5.0" + version = ">= 3.53, < 6" } }