Files
rke-cluster/.octopus/deployment_process.ocl
2023-12-18 08:50:12 -06:00

37 lines
902 B
Plaintext

step "terraform-plan" {
name = "Terraform Plan"
action {
properties = {
Octopus.Action.RunOnServer = "true"
Octopus.Action.Template.Id = "ActionTemplates-1"
Octopus.Action.Template.Version = "1"
}
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 = "1"
}
worker_pool_variable = ""
}
}