Files
atlantis/server/events/templates/policy_check.tmpl
Brett Galkowski 22060fe5d2 feat: Add option allowing usage of custom policy check tools (#3765)
* Adding new flag everywhere relevant, implementing policy result workaround

* Fixing unit test str matching, adding custom policy conditional to step_runner

* Adding documentation steps for custom policy tools

* Refactoring ConftestOutput attribute to PolicyOutput
2023-10-06 10:57:29 -04:00

10 lines
180 B
Cheetah

{{ define "policyCheck" -}}
{{ $policy_sets := . }}
{{ range $ps, $policy_sets }}
#### Policy Set: `{{ $ps.PolicySetName }}`
```diff
{{ $ps.PolicyOutput }}
```
{{ end }}
{{ end }}