diff --git a/octopus-samples-instances/octopus-space-standards-terraform/variables.tf b/octopus-samples-instances/octopus-space-standards-terraform/variables.tf index 1308176..e6ce2db 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/variables.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/variables.tf @@ -86,6 +86,16 @@ variable "octopus_static_gcp_worker_pool_name" { default = "GCP Worker Pool TF" } +variable "octopus_static_aws_windows_worker_pool_name" { + type = string + default = "AWS Windows Worker Pool TF" +} + +variable "octopus_static_azure_windows_worker_pool_name" { + type = string + default = "Azure Windows Worker Pool TF" +} + variable "octopus_azurevmss_api_key" { type = string sensitive = true diff --git a/octopus-samples-instances/octopus-space-standards-terraform/worker-pools.tf b/octopus-samples-instances/octopus-space-standards-terraform/worker-pools.tf index a48758a..3036b88 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/worker-pools.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/worker-pools.tf @@ -11,4 +11,14 @@ resource "octopusdeploy_static_worker_pool" "azure_worker_pool" { resource "octopusdeploy_static_worker_pool" "gcp_worker_pool" { name = var.octopus_static_gcp_worker_pool_name description = "Worker pool to access GCP resources. This is managed by the Octopus Terraform Provider. Please do not make changes in the UI, update the TF file instead." +} + +resource "octopusdeploy_static_worker_pool" "aws_windows_worker_pool" { + name = var.octopus_static_aws_windows_worker_pool_name + description = "Windows worker pool to access AWS resources. This is managed by the Octopus Terraform Provider. Please do not make changes in the UI, update the TF file instead." +} + +resource "octopusdeploy_static_worker_pool" "azure_windows_worker_pool" { + name = var.octopus_static_azure_windows_worker_pool_name + description = "Windows worker pool to access Azure resources. This is managed by the Octopus Terraform Provider. Please do not make changes in the UI, update the TF file instead." } \ No newline at end of file