Skip to content

Commit 54cd736

Browse files
added hcls for fetchbpa and fetchdsr
1 parent fea67a9 commit 54cd736

File tree

2 files changed

+6
-6
lines changed
  • backupdr

2 files changed

+6
-6
lines changed

backupdr/data_source_references/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17-
data "google_backup_dr_data_source_references" "all_csql_data_source_references" {
17+
data "google_backup_dr_data_source_references" "csql_instance_data_source_references" {
1818
location = "us-central1"
1919
resource_type = "sqladmin.googleapis.com/Instance"
2020
}
2121

22-
output "csql_data_source_references" {
23-
value = data.google_backup_dr_data_source_references.all_csql_data_source_references.data_source_references
22+
output "all_csql_data_source_references" {
23+
value = data.google_backup_dr_data_source_references.csql_instance_data_source_references.data_source_references
2424
}

backupdr/fetch_backup_plan_associations/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17-
data "google_backup_dr_backup_plan_associations" "csql_bpas" {
17+
data "google_backup_dr_backup_plan_associations" "csql_instance_associations" {
1818
location = "us-central1"
1919
resource_type = "sqladmin.googleapis.com/Instance"
2020
}
2121

22-
output "csql_bpas" {
23-
backup_plan_associations = google_backup_dr_backup_plan_associations.csql_bpas
22+
output "all_csql_backup_plan_associations" {
23+
value = google_backup_dr_backup_plan_associations.csql_instance_associations
2424
}

0 commit comments

Comments
 (0)