From 2bdbea6aeff1315a1aa8a6b52e7f7a8e82a54ec8 Mon Sep 17 00:00:00 2001 From: Awais Malik Date: Fri, 20 Oct 2023 10:12:01 -0700 Subject: [PATCH] fix: upgraded versions.tf to include minor bumps from tpg v5 (#153) Co-authored-by: Andrew Peabody --- examples/bigquery/versions.tf | 25 ------------------------- examples/kms/versions.tf | 25 ------------------------- examples/simple/versions.tf | 25 ------------------------- examples/subscriptions_only/versions.tf | 25 ------------------------- test/setup/versions.tf | 4 ++-- versions.tf | 2 +- 6 files changed, 3 insertions(+), 103 deletions(-) delete mode 100644 examples/bigquery/versions.tf delete mode 100644 examples/kms/versions.tf delete mode 100644 examples/simple/versions.tf delete mode 100644 examples/subscriptions_only/versions.tf diff --git a/examples/bigquery/versions.tf b/examples/bigquery/versions.tf deleted file mode 100644 index c4daaf9..0000000 --- a/examples/bigquery/versions.tf +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright 2021 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_providers { - google = { - source = "hashicorp/google" - version = "~> 4.23" - } - } - required_version = ">= 0.13" -} diff --git a/examples/kms/versions.tf b/examples/kms/versions.tf deleted file mode 100644 index 6f935e1..0000000 --- a/examples/kms/versions.tf +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright 2021 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_providers { - google = { - source = "hashicorp/google" - version = "~> 4.1" - } - } - required_version = ">= 0.13" -} diff --git a/examples/simple/versions.tf b/examples/simple/versions.tf deleted file mode 100644 index 6f935e1..0000000 --- a/examples/simple/versions.tf +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright 2021 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_providers { - google = { - source = "hashicorp/google" - version = "~> 4.1" - } - } - required_version = ">= 0.13" -} diff --git a/examples/subscriptions_only/versions.tf b/examples/subscriptions_only/versions.tf deleted file mode 100644 index 6f935e1..0000000 --- a/examples/subscriptions_only/versions.tf +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright 2021 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_providers { - google = { - source = "hashicorp/google" - version = "~> 4.1" - } - } - required_version = ">= 0.13" -} diff --git a/test/setup/versions.tf b/test/setup/versions.tf index 0177d7a..910d5df 100644 --- a/test/setup/versions.tf +++ b/test/setup/versions.tf @@ -19,11 +19,11 @@ terraform { required_providers { google = { source = "hashicorp/google" - version = "~> 4.23" + version = ">= 4.23" } google-beta = { source = "hashicorp/google-beta" - version = "~> 4.23" + version = ">= 4.23" } null = { source = "hashicorp/null" diff --git a/versions.tf b/versions.tf index 3c87dd0..d7533ff 100644 --- a/versions.tf +++ b/versions.tf @@ -20,7 +20,7 @@ terraform { google = { source = "hashicorp/google" - version = ">= 4.32, < 5.0" + version = ">= 4.32, < 6" } }