|
| 1 | +/** |
| 2 | + * Copyright 2024 Google LLC |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +output "app_admin_project_id" { |
| 18 | + description = "Project ID of the application admin project." |
| 19 | + value = module.balancereader.app_admin_project_id |
| 20 | +} |
| 21 | + |
| 22 | +output "app_infra_repository_name" { |
| 23 | + description = "Name of the application infrastructure repository." |
| 24 | + value = module.balancereader.app_infra_repository_name |
| 25 | +} |
| 26 | + |
| 27 | +output "app_infra_repository_url" { |
| 28 | + description = "URL of the application infrastructure repository." |
| 29 | + value = module.balancereader.app_infra_repository_url |
| 30 | +} |
| 31 | + |
| 32 | +output "app_cloudbuild_workspace_apply_trigger_id" { |
| 33 | + description = "ID of the apply cloud build trigger." |
| 34 | + value = module.balancereader.app_cloudbuild_workspace_apply_trigger_id |
| 35 | +} |
| 36 | + |
| 37 | +output "app_cloudbuild_workspace_plan_trigger_id" { |
| 38 | + description = "ID of the plan cloud build trigger." |
| 39 | + value = module.balancereader.app_cloudbuild_workspace_plan_trigger_id |
| 40 | +} |
| 41 | + |
| 42 | +output "app_cloudbuild_workspace_artifacts_bucket_name" { |
| 43 | + description = "Artifacts bucket name for the application workspace." |
| 44 | + value = module.balancereader.app_cloudbuild_workspace_artifacts_bucket_name |
| 45 | +} |
| 46 | + |
| 47 | +output "app_cloudbuild_workspace_logs_bucket_name" { |
| 48 | + description = "Logs bucket name for the application workspace." |
| 49 | + value = module.balancereader.app_cloudbuild_workspace_logs_bucket_name |
| 50 | +} |
| 51 | + |
| 52 | +output "app_cloudbuild_workspace_state_bucket_name" { |
| 53 | + description = "Terraform state bucket name for the application workspace." |
| 54 | + value = module.balancereader.app_cloudbuild_workspace_state_bucket_name |
| 55 | +} |
| 56 | + |
| 57 | +output "app_env_project_ids" { |
| 58 | + description = "Application environment projects IDs." |
| 59 | + value = module.balancereader.app_env_project_ids |
| 60 | +} |
0 commit comments