Terrakube can be used to detect any infraestructure drift, this can be done using Terrakube extensions(open policy and slack), templates and schedules, below you can find an example of how this can be achieved.
Open Policy Definition
The firts step will be to create a small rego policy and add this to your Terrakube extensions repository inside the "policy" folder with the name "plan_information.rego", this is a very simple policy that will count the number of changes for a terraform plan.
The policy should look like this in your extension repository
Terrakube extensions can be stored inside a GIT repository that you can configure when staring the platform. This is an example repository that you can fork or customize to create your custom extensions based on your own requirements https://github.com/AzBuilder/terrakube-extensions
Template Definition
The firts step will be to create a Terrakube template that validate if there is a change in our infraestructure.
flow: - type:"terraformPlan"step:100name:"Running Terraform Plan with Drift Detection and Slack Notification"commands: - runtime:"GROOVY"priority:100after:truescript:| import Opa new Opa().loadTool( "$workingDirectory", "$bashToolsDirectory", "0.45.0") "Opa Download Completed..." - runtime:"BASH"priority:200after:truescript:| cd $workingDirectory; terraform show -json terraformLibrary.tfPlan > tfplan.json; echo "Validating terraform plan information"; opa exec --decision terrakube/plan/information --bundle .terrakube/toolsRepository/policy/ tfplan.json | jq '.result[0].result' > drift_detection.json;
cat drift_detection.json; - runtime:"GROOVY"priority:300after:truescript:| import SlackApp import groovy.json.JsonSlurper import groovy.json.JsonOutput File drift_detection = new File("${workingDirectory}/drift_detection.json") String drift_detection_content = drift_detection.text println drift_detection_content def jsonSlurper = new JsonSlurper() def body = jsonSlurper.parseText(drift_detection_content) def changes = body.created + body.updated + body.deleted if (changes > 0) { new SlackApp().sendMessage( "#general", "Hello team, Terrakube has deteted an infrastructure drift, please review the following workspace $workspaceId inside organization $organizationId",
"$SLACK_TOKEN", terrakubeOutput); } else { new SlackApp().sendMessage( "#general", "Hello team, Terrakube did not detect any infrastructure drift for workspace $workspaceId inside organization $organizationId",
"$SLACK_TOKEN", terrakubeOutput); } "Drift Detection Completed..."
In a high level this template will do the following:
Run a terraform plan
flow:
- type: "terraformPlan"
step: 100
name: "Running Terraform Plan with Drift Detection and Slack Notification"
Once the terraform plan is completed, the template will import the Open Policy Extension to our job workspace
The next step will be to export the terraform plan in JSON format and execute the rego policy to validate the number of changes in our terraform plan and create a file "drift_detection.json" with the result
Once you have the number of changes we can add a simple validation to send a Slack Message using the Terrakube extension to notify you teams if an infrastructure drift was detected
if (changes > 0) {
new SlackApp().sendMessage(
"#general",
"Hello team, Terrakube has deteted an infrastructure drift, please review the following workspace $workspaceId inside organization $organizationId",
"$SLACK_TOKEN",
terrakubeOutput);
} else {
new SlackApp().sendMessage(
"#general",
"Hello team, Terrakube did not detect any infrastructure drift for workspace $workspaceId inside organization $organizationId",
"$SLACK_TOKEN",
terrakubeOutput);
}
SLACK_TOKEN is an environment variable that you can define at workspace level.
You can also setup this using the global variables in your organization
Template Setup
Now that you have define the template to detect the infraestructure drif you can add the template in your Terrakube organization using the name "Drift Detection"
The template will look like this:
Now you can use this template in any workspace inside your organization
Workspace Setup
To test the template we can use the following example for Azure and we execute a Terraform Apply inside Terrakube. This will create a app service plan with tier Basic and size B1
Once our resources are created in Azure we can run the Drift Detection template.
The template will send a message to a Slack channel with the following:
If there is no infracstructure change you should receive the following message in your slack channel.
If for some reason the resource in Azure is changed (scale up) and our state in Terrakube does not match with Azure you will see the following message.
Schedule Drift Detection
Now that you have tested the Drift Detection template, you can use with the Workspace Schedule feature to run this template for example every day at 5:30 AM for the workspace.
You will have to go the the "Schedule" option inside your workspace.
Now you can select the Drift Detection template to run at 5:30 AM every day.
Now you should receive the notification in your Slack channel every day at 5:30 am
Implementing Drift detection in Terrakube is easy, you just need to make use of extension and write a small script, this is just an example of easy is to extend Terrakube functionality using extensions, you can even create more complex templates quickly, for example you could create a webhook or send emails using the sendgrid extension.