Plan policy
Last updated
Was this helpful?
Last updated
Was this helpful?
Plan policies are evaluated during a planning phase after vendor-specific change preview command (eg. terraform plan
) executes successfully. The body of the change is exported to JSON and parts of it are combined with Spacelift metadata to form the data input to the policy.
Plan policies are the only ones that have access to the actual changes to the managed resources, so this is probably the best place to enforce organizational rules and best practices as well as do automated code review. There are two types of rules here that Spacelift will care about: deny and warn. Each of them must come with an appropriate message that will be shown in the logs. Any deny rules will print in red and will automatically fail the run, while warn rules will print in yellow and will at most mark the run for human review if the change affects the tracked branch and the Stack is set to .
Here is a super simple policy that will show both types of rules in action:
Let's create this policy, attach it to a Stack and take it for a spin by :
This is the schema of the data input that each policy request will receive:
String properties in "before"
and "after"
objects will be sanitized in order to protect secret values. Sanitization hashes the value and takes the last 8 bytes of the hash.
If you need to compare a string property to a constant, you can use the sanitized(string)
helper function.
In every organization, there are things you just don't do. Hard-won knowledge embodied by lengthy comments explaining that if you touch this particular line the site will go hard down and the on-call folks will be after you. Potential security vulnerabilities that can expose all your infra to the wrong crowd. Spacelift allows turning them into policies that simply can't be broken. In this case, you will most likely want to exclusively use deny rules.
Let's start by introducing a very simple and reasonable rule - never create static AWS credentials:
While in most cases you'll want your rules to only look at resources affected by the change, you're not limited to doing so. You can also look at all resources and force teams to remove certain resources. Here's an example - until all AWS resources are removed all in one go, no further changes can take place:
OK, so rule enforcement is very powerful, sometimes you want something more sophisticated. Instead of (or in addition to) enforcing hard rules, you can use plan policy rules to help humans understand changes better, and make informed decisions what looks good and what does not. This time we'll be adding more color to our policies and start using warn rules in addition to deny ones we've already seen in action.
The best way to use warn and deny rules together depends on your preferred Git workflow. We've found short-lived feature branches with Pull Requests to the tracked branch to work relatively well. In this scenario, the type
of the run
is important - it's PROPOSED for commits to feature branches, and TRACKED on commits to the tracked branch. You will probably want at least some of your rules to take that into account and use this mechanism to balance comprehensive feedback on Pull Requests and flexibility of being able to deploy things that humans deem appropriate.
As a general rule when using plan policies for code review, deny when run type is PROPOSED and warn when it is TRACKED. Denying tracked runs unconditionally may be a good idea for most egregious violations for which you will not consider an exception, but when this approach is taken to an extreme it can make your life difficult.
Predictably, this fails when committed to a non-tracked (feature) branch:
...but as a GitHub repo admin you can still merge it if you've set your branch protection rules accordingly:
Cool, let's merge it and see what happens:
Below are a few examples of policies that accomplish some common business goals. Feel free to copy them verbatim, or use them as an inspiration.
Adding resources may ultimately cost a lot of money but it's generally pretty safe from an operational perspective. Let's use a warn rule to allow changes with only added resources to get automatically applied, and require all others to get a human review:
Massive changes make reviewers miserable. Let's automatically fail all changes that affect more than 50 resources. Let's also allow them to be deployed with mandatory human review nevertheless:
Yay, that works (and it fails our plan, too), but it's not terribly useful - unless of course you want to block all changes to your Stack in a really clumsy way. Let's look a bit deeper into the that each plan policy receives, two possible - and - and some .
Since plan policies get access to the changes to your infrastructure that are about to be introduced, they are the right place to run all sorts of checks against those changes. We believe that there are two main use cases for those checks - preventing shooting yourself in the foot and that augments human decision-making.
Here's a minimal example of this rule in the .
If that makes sense, let's try defining a policy that implements a slightly more sophisticated piece of knowledge - that when some resources are recreated, they should be or an outage will follow. We found that to be the case with the , among others. So here it is:
Here's the obligatory .
Feel free to play with a minimal example of this policy in .
You've already seen warn rules in the but here it is in action again:
It won't fail your plan and it looks relatively benign, but this little yellow note can provide great help to a human reviewer, especially when multiple changes are introduced. Also, if a stack is set to , the presence of a single warning is enough to flag the run for a human review.
We thus suggest that you at most deny when the run is PROPOSED, which will send a failure status to the GitHub commit but will give the reviewer a chance to approve the change nevertheless. If you want a human to take another look before those changes go live, either set to false, or explicitly warn about potential violations. Here's an example of how to reuse the same rule to deny or warn depending on the run type:
Cool, so the run stopped in its tracks and awaits human decision. At this point we still have a choice to either or the run. In the latter case, you will likely want to revert the commit that caused the problem - otherwise all subsequent runs will be affected.
The minimal example for the above rule is available in the .
a minimal example to play with.
Sometimes there are folks who really know what they're doing and changes they introduce can get deployed automatically, especially if they already went through code review. Below is an example that allows commits from whitelisted individuals to be deployed automatically (assumes Stack is set to ):
Here's the for your enjoyment.
Here's the above example in the , with the threshold set to 1 for simplicity.
This is a fancy contrived example building on top of the previous one. However, rather than just looking at the total number of affected resources, it attempts to create a metric called a "blast radius" - that is how much the change will affect the whole stack. It assigns special multipliers to some types of resources changed and treats different types of changes differently: deletes and updates are more "expensive" because they affect live resources, while new resources are generally safer and thus "cheaper". As per our pattern, we will fail Pull Requests with changes violating this policy, but require human action through warnings when these changes hit the tracked branch.
You can play with a minimal example of this policy in .
Thanks to our Infracost integration, when deciding whether to ask for human approval or to block changes entirely.