Policy as Code for Terraform
Learn how to create and enforce OPA policies on Terraform Plan, Terraform Plan Cost, and Terraform State.
Harness provides governance using Open Policy Agent (OPA), Policy Management, and Rego policies.
Harness supports three Terraform-related entity types for policy evaluation. Each entity type has its own set of evaluation events, letting you enforce governance at different stages of your Terraform workflow.
Terraform Plan
After Terraform Plan
After a Terraform Plan step completes in a pipeline
Terraform Plan Cost
After Terraform Plan
After a Terraform Plan step completes (evaluates the cost estimate)
Terraform State
After Terraform Plan / After Terraform Apply
After a Terraform Plan or Terraform Apply step completes
For more details, see the Harness Governance Quickstart.
Prerequisites
Policies use the OPA authoring language Rego. For more information, see OPA Policy Authoring.
Sample policies in the Library
Harness ships four built-in sample policies for Terraform entities. You can find them in the Library panel by searching for "terraform":

Terraform Plan – EC2
Terraform Plan
Ensures the Terraform plan meets required EC2 criteria
Terraform State – EC2
Terraform State
Ensures the Terraform state meets required EC2 criteria
Terraform Plan Cost – Cost Estimate Increased
Terraform Plan Cost
Ensures cost estimate has not increased more than 10% compared to the last plan
Terraform Plan Cost – Total Cost Estimate
Terraform Plan Cost
Ensures the total cost does not exceed a specified amount
Terraform Plan
Overview
A Terraform Plan policy evaluates the planned infrastructure changes before they are applied. Use this to enforce rules on what resources can be created, modified, or destroyed.
The policy is evaluated on the event:
After Terraform Plan — evaluated after a Terraform Plan step completes in a pipeline.

Step 1: Add a policy
In Harness, go to Account Settings → Policies → New Policy.
Enter a Name for your policy and click Apply.
Add your Rego policy in the editor. You can use a sample from the Library (search "Terraform Plan") or write your own.
Below is an example that blocks plans creating EC2 instances of a disallowed type:
Click Save.
Step 2: Add the policy to a policy set
Go to Policies → Policy Sets → New Policy Set.
Enter a Name and optional Description.
In Entity type, select Terraform Plan.
In On what event should the Policy Set be evaluated, select After Terraform Plan.
Click Continue.
In Policy evaluation criteria, click Add Policy and select your policy.
Select the severity:
Warn & continue — a warning is displayed but the pipeline continues.
Error and exit — the pipeline fails if the policy is not met.
Click Apply, then click Finish.
Terraform Plan Cost
Overview
A Terraform Plan Cost policy evaluates the estimated cost of planned infrastructure changes. Use this to set cost guardrails and prevent unexpected spending.
The policy is evaluated on the event:
After Terraform Plan — evaluated after a Terraform Plan step completes, using the cost estimate data.

Step 1: Add a policy
In Harness, go to Account Settings → Policies → New Policy.
Enter a Name for your policy and click Apply.
Add your Rego policy in the editor. Below are two examples matching the built-in samples.
Block cost increases over 10%
Block plans exceeding a total cost limit
Click Save.
Step 2: Add the policy to a policy set
Go to Policies → Policy Sets → New Policy Set.
Enter a Name and optional Description.
In Entity type, select Terraform Plan Cost.
In On what event should the Policy Set be evaluated, select After Terraform Plan.
Click Continue.
In Policy evaluation criteria, click Add Policy and select your policy.
Select the severity (Warn & continue or Error and exit).
Click Apply, then click Finish.
Terraform State
Overview
A Terraform State policy evaluates the current state of your Terraform-managed infrastructure. Use this to audit existing resources and ensure ongoing compliance.
The policy is evaluated on the events:
After Terraform Plan — evaluated after a Terraform Plan step completes.
After Terraform Apply — evaluated after a Terraform Apply step completes.

Step 1: Add a policy
In Harness, go to Account Settings → Policies → New Policy.
Enter a Name for your policy and click Apply.
Add your Rego policy in the editor. Below is an example that checks EC2 instance types in the current state:
Click Save.
Step 2: Add the policy to a policy set
Go to Policies → Policy Sets → New Policy Set.
Enter a Name and optional Description.
In Entity type, select Terraform State.
In On what event should the Policy Set be evaluated, select After Terraform Plan or After Terraform Apply.
Click Continue.
In Policy evaluation criteria, click Add Policy and select your policy.
Select the severity (Warn & continue or Error and exit).
Click Apply, then click Finish.
Policy set entity type selection
When creating a policy set, the Entity Type dropdown lists all three Terraform entity types separately:

Each entity type must have its own policy set — you cannot mix Terraform Plan, Terraform Plan Cost, and Terraform State policies in a single policy set.
See also
Last updated
Was this helpful?