Skip to content

Commit

Permalink
Added AWS and Azure Windows worker pools.
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Sep 2, 2022
1 parent c835bb7 commit 7dc9a3a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

0 comments on commit 7dc9a3a

Please sign in to comment.