Exclude a Recipe in a Role

Hi

I'd like to exlcude a recipe in a certian role for a node, this is the configuration:

Node ABC
"role[base-config]",

Role 'base-config.json'
"run_list": [
"recipe[web::apache]",
"recipe[monit::nagios]",
"recipe[sudo]"
]

I don't want to run ' "recipe[web::apache]", on my Node ABC.
How can I do?
Thank you

Write a different role without the excluded recipe. And consider stacking contriv roles adding elements and including other roles only as needed.

Also take advantage of tags to define actions.