Filtering group using data block of google_cloud_identity_groups

Hi All,

Objective of this case is to filter the particular group from multiple identity groups from customer/xxxxxxx.

Using below code, I am able to list all the identity group which is taking more than 30 mins. Could you please help me out to filter particular group only.

data “google_cloud_identity_groups” “group-cr” {
parent = “customers/xxxxxxx”
}

output “grp_id” {
value = data.google_cloud_identity_groups.group-cr.groups[*]
}

Appreciate your response.
Thanks