I'm looking for a way to give a set of users the ability to modify an existing scheduled search's search string, without being able to change its schedule or create new scheduled searches. Based on what I know of the current capabilities, this doesn't seem possible since Splunk won't let you modify a scheduled search without the schedule_search capability, which would give them full add/change/delete of any scheduled search. Can anyone prove me wrong?
I would turn the key part, or parts of the search into a search macro, and then give them broader access to change that macro without changing the search.
Be mindful of permissions and sharing on that macro of course, so that it's available to the scheduled search when the time comes, but this should work fine.
http://docs.splunk.com/Documentation/Splunk/6.2.5/Search/Usesearchmacros
I agree with @sideview; this can also be done with eventtypes
(which are macro-tized base searches) if you do not have any pipes in your search.
I would turn the key part, or parts of the search into a search macro, and then give them broader access to change that macro without changing the search.
Be mindful of permissions and sharing on that macro of course, so that it's available to the scheduled search when the time comes, but this should work fine.
http://docs.splunk.com/Documentation/Splunk/6.2.5/Search/Usesearchmacros
Not ideal, but probably the best work around available currently within Splunk itself. What I really need is
I'm actually thinking of throwing some custom code in front of the REST interface to handle this particular case outside of the Splunk GUI.