diff --git a/VERSION b/VERSION index 492b167..9256e28 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.12 \ No newline at end of file +1.0.13 \ No newline at end of file diff --git a/provider/resource_project.go b/provider/resource_project.go index 63af356..8f8b735 100644 --- a/provider/resource_project.go +++ b/provider/resource_project.go @@ -417,6 +417,7 @@ func updateDatabasesInProject(ctx context.Context, d *schema.ResourceData, clien end = len(batchTransferDatabases) } batch := batchTransferDatabases[i:end] + tflog.Info(ctx, fmt.Sprintf("transfer databases for range [%d, %d]", i, end)) if _, err := client.BatchUpdateDatabases(ctx, &v1pb.BatchUpdateDatabasesRequest{ Requests: batch, Parent: "instances/-", @@ -452,6 +453,7 @@ func updateDatabasesInProject(ctx context.Context, d *schema.ResourceData, clien end = len(unassignDatabases) } batch := unassignDatabases[i:end] + tflog.Info(ctx, fmt.Sprintf("unassign databases for range [%d, %d]", i, end)) if _, err := client.BatchUpdateDatabases(ctx, &v1pb.BatchUpdateDatabasesRequest{ Requests: batch, Parent: "instances/-",