Skip to main content

Remediation 🔃

Definition

The remediation to a drift is the action of bringing back the deployed infrastructure and the code used to deploy it to the same state.

Types of remediation

When a drift happens, you have to 2 ways to remediate to it:

1. Override the infrastructure

This consists of redeploying the code that describes the infrastructure because it is the source of truth and any changes happening outside of the code should be reverted.

You have 2 methods to implement this type of remediation:

  • Automatic: In the drift detection workflow that you create, you can add as a task task Terraform apply. Which means whenever the workflow executes it will always redeploy the current code when any changes is detected. auto-remediate
info

Please refer to this page to know how to create a drift detection scheduled workflow.

warning

This automatic remediation should be used with caution. It usually requires a team effort and we advise you to always send a notification from any drift detection workflow you setup.

  • Manual: In this case, you manually inspect the output of the drift detection and manually redeploy the infrastructure either by triggering the deployment pipeline or doing an apply from one action.

2. Bring changes to the code

In this case, you add the changes that have been applied to provisioned infrastructure to the code.

This is useful and required in situations where the changes are legitimate. The common example is during a security incident and as an emergency response, users do the change on the cloud provider because it is quicker, especially if the pipeline to deploy with Terraform takes time.