From 2c1eb14e1a89a0cb0f6dd4fb7f5ea512972948cd Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 11 Jan 2024 14:24:07 -0800 Subject: [PATCH 1/2] Revert "fix(CI): increase provider timeout for bucket creation" --- modules/logbucket/providers.tf | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 modules/logbucket/providers.tf diff --git a/modules/logbucket/providers.tf b/modules/logbucket/providers.tf deleted file mode 100644 index a5625afc..00000000 --- a/modules/logbucket/providers.tf +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Copyright 2024 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. - */ - -/****************************************** - Provider request timeout configuration - *****************************************/ -provider "google" { - request_timeout = "5m" -} From 5fd5d4daaea75d9fa521cfc72ec935db8c157cad Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Thu, 11 Jan 2024 14:53:35 -0800 Subject: [PATCH 2/2] Create providers.tf --- examples/logbucket/project/providers.tf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/logbucket/project/providers.tf diff --git a/examples/logbucket/project/providers.tf b/examples/logbucket/project/providers.tf new file mode 100644 index 00000000..a5625afc --- /dev/null +++ b/examples/logbucket/project/providers.tf @@ -0,0 +1,22 @@ +/** + * Copyright 2024 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. + */ + +/****************************************** + Provider request timeout configuration + *****************************************/ +provider "google" { + request_timeout = "5m" +}