Template Scheduling in Jobs
When we deploy some infrastructure we can set some other template to execute in some specific time for example to destroy the infrascturture or resize it.
This example will show the basic logic to accomplish but it is not creaing a real VM it just running some scripts that are showing the injected terraform variables when running the job.
Example
Define the size as global terraform variables for example SIZE_SMALL and SIZE_BIG, this terraform variables will be injected in our future templates "schedule1" and "schedule2" as terraform variables dynamically.\

We define a job template that creates the infrasctucture using some small size and create two schedule at the end of the template.
Create Virtual Machine (Example)
We will have 3 templates, one to create the virtual machine and two to resize it

Once the workspace is executed creating the infrasctructure two automatic shedules will be define

Differente jobs will be executed.

Resize Template (schedule1)
Inject the new size using global terraform variables

Resize Template (schedule2)
Inject the new size using global terraform variables

Last updated
Was this helpful?