From 1a2a1c5f68d53f57d59af9d42e9c585b2abf4ff4 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 17 Dec 2023 08:07:44 -0600 Subject: [PATCH] Update deployment process --- .octopus/deployment_process.ocl | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.octopus/deployment_process.ocl b/.octopus/deployment_process.ocl index e69de29..7f50c0c 100644 --- a/.octopus/deployment_process.ocl +++ b/.octopus/deployment_process.ocl @@ -0,0 +1,37 @@ +step "terraform-plan" { + name = "Terraform Plan" + + action { + properties = { + Octopus.Action.RunOnServer = "true" + Octopus.Action.Template.Id = "ActionTemplates-1" + Octopus.Action.Template.Version = "0" + } + worker_pool_variable = "" + } +} + +step "approve-plan" { + name = "Approve Plan" + + action { + properties = { + Octopus.Action.RunOnServer = "false" + Octopus.Action.Template.Id = "ActionTemplates-3" + Octopus.Action.Template.Version = "0" + } + } +} + +step "terraform-apply" { + name = "Terraform Apply" + + action { + properties = { + Octopus.Action.RunOnServer = "true" + Octopus.Action.Template.Id = "ActionTemplates-2" + Octopus.Action.Template.Version = "0" + } + worker_pool_variable = "" + } +} \ No newline at end of file