Skip to content

Commit 151f126

Browse files
committed
Automation Toolkit Release v2026.1.0
1 parent c9f3a01 commit 151f126

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

cd3_automation_toolkit/gcpcloud/terraform/exadata-gcp.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ data "google_oracle_database_cloud_exadata_infrastructure" "exa_infra" {
3838

3939
output "db_servers" {
4040
description = "DB Servers"
41-
# value = data.google_oracle_database_db_servers.this[0].db_servers[*].properties.0.ocid
42-
value = ""
41+
value = {for k,v in var.gcp_oci_exa_vmclusters : k => data.google_oracle_database_db_servers.this[k].db_servers[*].properties.0.ocid}
42+
#value = ""
4343
}
4444

4545
output "exa_infra_id" {
4646
description = "DB Servers"
47-
# value = data.google_oracle_database_cloud_exadata_infrastructure.exa_infra[0].id
48-
value = ""
47+
value = {for k,v in var.gcp_oci_exa_vmclusters : k =>data.google_oracle_database_cloud_exadata_infrastructure.exa_infra[k].id}
48+
#value = ""
4949
}
5050

5151

cd3_automation_toolkit/ocicloud/python/database/export_exa_infra_cdb_nonGreenField.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ def print_exa_cdb(region,exadata_infrastructure,exa_infra_compartment_name,vm_cl
107107

108108
if col_header == 'Run Immediate Full Backup':
109109
run_immediate_full_backup = exa_cdb.db_backup_config.run_immediate_full_backup
110+
111+
if run_immediate_full_backup == "":
112+
run_immediate_full_backup = "false"
113+
110114
values_for_column[col_header].append(run_immediate_full_backup)
111115

112116
else:

0 commit comments

Comments
 (0)