-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoutputs.tf
46 lines (42 loc) · 1.45 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* 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
*
* 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.
*/
output "spanner_instance_id" {
description = "Spanner Instance ID"
value = (
!var.create_instance ?
data.google_spanner_instance.instance[0].id :
(
local.enable_instance_nn ?
google_spanner_instance.instance_num_node[0].id :
google_spanner_instance.instance_processing_units[0].id
)
)
}
output "spanner_db_details" {
description = "Spanner Databases information map"
value = {
for k, v in local.database_creation_list :
k => google_spanner_database.database[k]
}
}
output "workflow_id" {
description = "Spanner Backup Workflow ID"
value = length(local.backup_args) > 0 ? module.schedule_spanner_backup[0].workflow_id : null
}
output "cloud_scheduler_id" {
description = "Spanner Backup Cloud Scheduler ID"
value = length(local.backup_args) > 0 ? module.schedule_spanner_backup[0].scheduler_job_id : null
}