From 94fc7144aa3cf1b075d593c0c11ca5d4ee5d6b73 Mon Sep 17 00:00:00 2001 From: zentron Date: Fri, 6 Oct 2023 09:27:29 +1000 Subject: [PATCH] Add support for Windows2022 worker pools --- octopusdeploy/schema_dynamic_worker_pool.go | 1 + octopusdeploy/schema_worker_pool.go | 1 + 2 files changed, 2 insertions(+) diff --git a/octopusdeploy/schema_dynamic_worker_pool.go b/octopusdeploy/schema_dynamic_worker_pool.go index aead4a625..9b87f9ca6 100644 --- a/octopusdeploy/schema_dynamic_worker_pool.go +++ b/octopusdeploy/schema_dynamic_worker_pool.go @@ -104,6 +104,7 @@ func getDynamicWorkerPoolSchema() map[string]*schema.Schema { "UbuntuDefault", "Windows2016", "Windows2019", + "Windows2022", "WindowsDefault", }, false)), }, diff --git a/octopusdeploy/schema_worker_pool.go b/octopusdeploy/schema_worker_pool.go index e98036b65..178c72909 100644 --- a/octopusdeploy/schema_worker_pool.go +++ b/octopusdeploy/schema_worker_pool.go @@ -81,6 +81,7 @@ func getWorkerPoolSchema() map[string]*schema.Schema { "UbuntuDefault", "Windows2016", "Windows2019", + "Windows2022", "WindowsDefault", }, false)), },