From e94f26fe50ac2a3246d19c5ba202c962f0f06d92 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Fri, 20 Jan 2023 00:51:12 +0000 Subject: [PATCH] fix: add versions.tf --- .../safer_cluster_iap_bastion/version.tf | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/fixtures/safer_cluster_iap_bastion/version.tf diff --git a/test/fixtures/safer_cluster_iap_bastion/version.tf b/test/fixtures/safer_cluster_iap_bastion/version.tf new file mode 100644 index 0000000000..7f193ad3b6 --- /dev/null +++ b/test/fixtures/safer_cluster_iap_bastion/version.tf @@ -0,0 +1,26 @@ +/** + * Copyright 2023 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.0" + required_providers { + google = { + source = "hashicorp/google" + # Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507 + version = "!= 4.49.0" + } + } +}