mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-06 09:28:34 +00:00
* Adding policy_check support into yaml config * Added policy check model and runtime structs * Adding BuildPolicyCheckCommand to ProjectCommandBuilder * Return incorrectly deleted code * Remove BuildAutoPolicyPlanCommand from ProjectCommandBuilder * Split runAutoCommand into two functions runAutoPlanCommand - does what originally RunAutoplancommand was doing except now it returns CommandResult and []models.ProjectCommandContext runAutoPolicyCheckCommand - accepts CommandContext, CommandResult, and []models.ProjectCommandContext as arguments and runs PolicyCheckStep runner * Refactor RunCommentCommand * Remove BuildPolicyCheckCommand and rename StepCmdExec back to TerraformExec * Add policy step runner logic and conftest interfaces. * Add show step runner to policy check stage. * Adding models.PolicyCheckCommand to buildCtx This also means buildPlanAllCommands call buildCtx twice once with models.PlanCommand and once with models.PolicyCheckCommand * Adding new project_command_builder that supports policy_check * Refactoring PolicyCheck specific logic into a PolicyCheckProjectCommandBuilder * Moving events.CommandContext to models.CommandContext this will allow me to remove buildCtx method and move ProjectCommandContext creation into models package * Policy Owners might be different types, for that reason we are refactoring Owners into its own struct with specific keys defining different owner types Co-authored-by: Nish Krishnan <nishk@lyft.com> Co-authored-by: Nish Krishnan <nishkrishnan@users.noreply.github.com>
39 lines
1.3 KiB
Go
39 lines
1.3 KiB
Go
package runtime
|
|
|
|
import (
|
|
"github.com/hashicorp/go-version"
|
|
"github.com/pkg/errors"
|
|
"github.com/runatlantis/atlantis/server/events/models"
|
|
)
|
|
|
|
// PolicyCheckStepRunner runs a policy check command given a ctx
|
|
type PolicyCheckStepRunner struct {
|
|
versionEnsurer ExecutorVersionEnsurer
|
|
executor Executor
|
|
}
|
|
|
|
// NewPolicyCheckStepRunner creates a new step runner from an executor workflow
|
|
func NewPolicyCheckStepRunner(defaultTfVersion *version.Version, executorWorkflow VersionedExecutorWorkflow) (Runner, error) {
|
|
|
|
runner := &PlanTypeStepRunnerDelegate{
|
|
defaultRunner: &PolicyCheckStepRunner{
|
|
versionEnsurer: executorWorkflow,
|
|
executor: executorWorkflow,
|
|
},
|
|
remotePlanRunner: RemoteBackendUnsupportedRunner{},
|
|
}
|
|
|
|
return NewMinimumVersionStepRunnerDelegate(minimumShowTfVersion, defaultTfVersion, runner)
|
|
}
|
|
|
|
// Run ensures a given version for the executable, builds the args from the project context and then runs executable returning the result
|
|
func (p *PolicyCheckStepRunner) Run(ctx models.ProjectCommandContext, extraArgs []string, path string, envs map[string]string) (string, error) {
|
|
executable, err := p.versionEnsurer.EnsureExecutorVersion(ctx.Log, ctx.PolicySets.Version)
|
|
|
|
if err != nil {
|
|
return "", errors.Wrapf(err, "ensuring policy executor version")
|
|
}
|
|
|
|
return p.executor.Run(ctx, executable, envs, path)
|
|
}
|