Is there any possibility to automate terraform plan command every 15 minutes?
I need to be notified if resources created by terraform is changed outside terraform (through console) . I wrote a python script to get the changes using resource_drift . I need to check my infrastructure every 15 minutes .
I thought of installing terraform inside lambda function and have terraform plan command and automate every 15 minutes using events
How can I achieve this situation?