Is it possible to specify what job collection Visual Studio should use when it deploys an Azure Web Job with a schedule? By default it tries to create a new Free tier collection, but as I already have one (and the limit is one per account), it fails to deploy.
I want to set up a paid job collection, and have all my deployments go into that collection.
I am deploying the WebJob from Visual Studio's Publish as Azure WebJob...
option. The error message in Visual Studio is:
An error occurred while creating the WebJob schedule: The subscription 'XXX' cannot have more than '1' free job collections. (/subscriptions/XXX/resourceGroups/CS-WestEurope-scheduler/providers/Microsoft.Scheduler/jobCollections/YYY)
I want to keep my existing free job collection (as it has other manually created HTTP jobs in it). It would be much better if I could specify myself where the WebJob schedule should go.
Thanks!