Ben March
Ben March
If you can't wait for this feature and need to add the flag via terraform then using the [AzAPI Provider](https://registry.terraform.io/providers/azure/azapi/latest/docs) could be a good workaround option for you ```hcl resource...
I'll test out a simple/dummy Groovy script and add it to the wiki documentation for Groovy cron tasks
I think this is a duplicate of #521
I took a look at CronTaskConfigurationControllerTest, which demonstrates: ``` CronTaskConfigurationDto configuration = new CronTaskConfigurationDto(); configuration.setOneTimeExecution(true); configuration.setName(name); configuration.addProperty("cronExpression", cronExpression); ``` This instantiates some config for a groovy cron task (the name,...
Not quite, I'll try and explain better. `ConfigurationResourceResolver.getVaultDirectory() + "/etc/conf/cron/groovy"` is where the script is stored after hitting the endpoint: `PUT - http://localhost:48080/api/configuration/crontasks/cron/groovy?cronName=MyCron` What I meant to ask for is......
I'm having issues starting an instance of Strongbox to test the REST API, as mentioned here https://gist.github.com/bamarch/72bba0d8ca988902b2d7e9fd9bcdd6c4 Maybe someone could let me know how they workaround such issues when trying...
nvm updated docker-compose.yml to use spring boot
the tests in CronTaskConfigurationControllerTest all pass, and reviewing this class I got a list of the correct relevant paths for uploading groovy scripts, doing the cron configuration etc... the issue...
Yep I’ll bundle it with the change to remove the outdated readme.md stuff
I'll improve the wiki documentation for Groovy cron tasks, and include an example