New tool versions.py to manage versions.tf/tofu (#2803)

* Add provider_metadata to all modules

* Fix linting version check

* Another way

* Fix syntax

* Add fabric prefix to all provider meta

* Fix linting.yml
This commit is contained in:
Julio Castillo
2025-01-09 09:57:48 +01:00
committed by GitHub
parent 9723cc2a57
commit cf173701b6
198 changed files with 1479 additions and 201 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -105,18 +105,18 @@ jobs:
- name: Check modules versions
id: versions
run: |
OUTPUT_TF=$(find . -type f -name 'versions.tf' -exec diff -ub default-versions.tf {} \;)
OUTPUT_TF=$(find . -type f -name 'versions.tf' -exec diff -I '[[:space:]]*module_name' -ub default-versions.tf {} \;)
if [[ -n "${OUTPUT_TF}" ]] ; then
echo "Terraform versions.tf:"
echo "${OUTPUT_TF}"
fi
OUTPUT_TOFU=$(find . -type f -name 'versions.tofu' -exec diff -ub default-versions.tofu {} \;)
OUTPUT_TOFU=$(find . -type f -name 'versions.tofu' -exec diff -I '[[:space:]]*module_name' -ub default-versions.tofu {} \;)
if [[ -n "${OUTPUT_TOFU}" ]] ; then
echo "Terraform versions.tofu:"
echo "${OUTPUT_TOFU}"
fi
grep -v required_version default-versions.tf > /tmp/versions.tf
grep -v required_version default-versions.tofu > /tmp/versions.tofu
egrep -v "(required_version|module_name)" default-versions.tf > /tmp/versions.tf
egrep -v "(required_version|module_name)" default-versions.tofu > /tmp/versions.tofu
diff -rub /tmp/versions.tf /tmp/versions.tofu
DIFF_EC=$?
[[ "${DIFF_EC}" -eq "0" || -z "${OUTPUT_TF}" || -z "${OUTPUT_TOFU}" ]]

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/autopilot-cluster:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/autopilot-cluster:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/autopilot-cluster:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/autopilot-cluster:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/batch:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/batch:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/batch:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/batch:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/kafka:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/kafka:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/kafka:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/kafka:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/kong-cloudrun:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/kong-cloudrun:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/kong-cloudrun:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/kong-cloudrun:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/mysql:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/mysql:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/mysql:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/mysql:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/gke/patterns/redis-cluster:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/gke/patterns/redis-cluster:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/gke/patterns/redis-cluster:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/gke/patterns/redis-cluster:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:blueprints/secops/secops-gke-forwarder:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:blueprints/secops/secops-gke-forwarder:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:blueprints/secops/secops-gke-forwarder:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:blueprints/secops/secops-gke-forwarder:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:path:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:path:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:path:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:path:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/__experimental_deprecated/alloydb-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/__experimental_deprecated/alloydb-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/__experimental_deprecated/alloydb-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/__experimental_deprecated/alloydb-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/__experimental_deprecated/net-neg:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/__experimental_deprecated/net-neg:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/__experimental_deprecated/net-neg:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/__experimental_deprecated/net-neg:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/__experimental_deprecated/project-iam-magic:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/__experimental_deprecated/project-iam-magic:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/__experimental_deprecated/project-iam-magic:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/__experimental_deprecated/project-iam-magic:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/alloydb:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/alloydb:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/alloydb:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/alloydb:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/analytics-hub:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/analytics-hub:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/analytics-hub:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/analytics-hub:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/api-gateway:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/api-gateway:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/api-gateway:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/api-gateway:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/apigee:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/apigee:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/apigee:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/apigee:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/artifact-registry:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/artifact-registry:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/artifact-registry:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/artifact-registry:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/bigquery-dataset:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/bigquery-dataset:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/bigquery-dataset:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/bigquery-dataset:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/bigtable-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/bigtable-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/bigtable-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/bigtable-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/billing-account:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/billing-account:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/billing-account:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/billing-account:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/binauthz:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/binauthz:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/binauthz:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/binauthz:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/certificate-authority-service:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/certificate-authority-service:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/certificate-authority-service:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/certificate-authority-service:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/certificate-manager:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/certificate-manager:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/certificate-manager:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/certificate-manager:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/__need_fixing/onprem:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/__need_fixing/onprem:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/__need_fixing/onprem:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/__need_fixing/onprem:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/__need_fixing/squid:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/__need_fixing/squid:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/__need_fixing/squid:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/__need_fixing/squid:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/bindplane:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/bindplane:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/bindplane:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/bindplane:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/coredns:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/coredns:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/coredns:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/coredns:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/cos-generic-metadata:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/cos-generic-metadata:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/cos-generic-metadata:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/cos-generic-metadata:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/envoy-sni-dyn-fwd-proxy:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/envoy-sni-dyn-fwd-proxy:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/envoy-sni-dyn-fwd-proxy:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/envoy-sni-dyn-fwd-proxy:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/envoy-traffic-director:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/envoy-traffic-director:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/envoy-traffic-director:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/envoy-traffic-director:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/mysql:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/mysql:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/mysql:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/mysql:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/nginx-tls:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/nginx-tls:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/nginx-tls:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/nginx-tls:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/nginx:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/nginx:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/nginx:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/nginx:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-config-container/simple-nva:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-config-container/simple-nva:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-config-container/simple-nva:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-config-container/simple-nva:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-function-v1:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-function-v1:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-function-v1:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-function-v1:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-function-v2:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-function-v2:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-function-v2:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-function-v2:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-identity-group:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-identity-group:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-identity-group:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-identity-group:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-run-v2:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-run-v2:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-run-v2:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-run-v2:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloud-run:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloud-run:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloud-run:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloud-run:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/cloudsql-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/cloudsql-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/cloudsql-instance:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/cloudsql-instance:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/compute-mig:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/compute-mig:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/compute-mig:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/compute-mig:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/compute-vm:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/compute-vm:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/compute-vm:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/compute-vm:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/container-registry:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/container-registry:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/container-registry:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/container-registry:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/data-catalog-policy-tag:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/data-catalog-policy-tag:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/data-catalog-policy-tag:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/data-catalog-policy-tag:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/data-catalog-tag-template:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/data-catalog-tag-template:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/data-catalog-tag-template:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/data-catalog-tag-template:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/data-catalog-tag:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/data-catalog-tag:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/data-catalog-tag:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/data-catalog-tag:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/dataform-repository:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/dataform-repository:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/dataform-repository:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/dataform-repository:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/datafusion:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/datafusion:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/datafusion:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/datafusion:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/dataplex-datascan:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/dataplex-datascan:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/dataplex-datascan:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/dataplex-datascan:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/dataplex:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/dataplex:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tofu:modules/dataplex:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tofu:modules/dataplex:v36.0.1"
}
}

View File

@@ -1,4 +1,4 @@
# Copyright 2024 Google LLC
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,4 +26,10 @@ terraform {
version = ">= 6.13.0, < 7.0.0" # tftest
}
}
provider_meta "google" {
module_name = "fabric:tf:modules/dataproc:v36.0.1"
}
provider_meta "google-beta" {
module_name = "fabric:tf:modules/dataproc:v36.0.1"
}
}

Some files were not shown because too many files have changed in this diff Show More