If your omitInactive
option is disabled in your environment configuration, you may be fetching in a lot of inactive elements which may be different across the two environments. Set this option to true
to stop fetching inactive elements and reduce the number of differences.
To do this to a specific type, add the following to your environment configuration file (in this example, we omit inactive triggers):
zendesk {
fetch = {
omitInactive = {
customizations = {
trigger = true
}
...To do this by default to all zendesk types, add the following to your environment configuration:
zendesk {
fetch = {
omitInactive = {
default = true
customizations = {}
...