I would like to exclude a given string from the list of string in terraform
example: I have following data source as a variable
region_list = data.oci_identity_region_subscriptions.region_subscriptions.region_subscriptions.*.region_name
Now, I would like to exclude a region from it. Region "us-ashburn-1"
exclude ("us-ashburn-1") form region_list. Any thoughts on how to do that?