terraform/terraform.tfvars (24 lines of code) (raw):

/** * 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. */ project_id = "" // The ID of the Google Cloud Project where all resources will be created region = "" // The region in which the Artifact Registry, Cloud Run and Cloud Scheduler services will be deployed repository = "" // The name of the Artifact Registry repository cloud_run_job_name = "" // The name of the Cloud Run job that will be created output_table = "" // The BigQuery table that will be used for storing the results from the Anti Pattern Detector apply_scheduler = true // Determines if a Cloud Scheduler job should be applied, default is false scheduler_frequency = "" // Schedule frequency for the Cloud Scheduler job, in cron format bigquery_dataset_name = "" // Name of the existing BigQuery dataset where output table will be created create_output_table = true // Determines whether the output table is created in the BigQuery Dataset. The default value is true.