stacks/HANA-Scaleout-Standby/tf/outputs.tf (48 lines of code) (raw):

# Copyright 2021 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 # # https://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. output "project_id" { value = var.project_id } output "instances_self_links_master" { value = module.hana_scaleout.instances_self_links_master } output "instances_self_links_worker" { value = module.hana_scaleout.instances_self_links_worker } output "master_instance_name" { value = module.hana_scaleout.master_instance_name } output "worker_instance_names" { value = module.hana_scaleout.worker_instance_names } output "standby_instance_name" { value = module.gcp_hana.standby_instance_name } output "address_master" { value = module.hana_scaleout.address_master } output "address_worker" { value = module.hana_scaleout.address_worker } output "master_attached_disks_data" { value = module.hana_scaleout.master_attached_disks_data } output "worker_attached_disks_data" { value = module.hana_scaleout.worker_attached_disks_data } output "hana_data_size" { value = module.hana_scaleout.hana_data_size } output "hana_log_size" { value = module.hana_scaleout.hana_log_size } output "hana_usr_size" { value = module.hana_scaleout.hana_usr_size } output "inventory" { value = module.hana_scaleout.inventory } output "hana_filestore_backup" { value = module.hana_scaleout.hana_filestore_backup } output "hana_filestore_shared" { value = module.hana_scaleout.hana_filestore_shared }