Skip to content

Commit

Permalink
feat: added operating_system for pools (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
imprateeksh authored Jun 24, 2024
1 parent a4994d2 commit edcbaf1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ resource "ibm_container_vpc_worker_pool" "pool" {
cluster = local.cluster_id
worker_pool_name = each.value.pool_name
flavor = each.value.machine_type
operating_system = each.value.operating_system
worker_count = each.value.workers_per_zone
labels = each.value.labels
crk = each.value.boot_volume_encryption_kms_config == null ? null : each.value.boot_volume_encryption_kms_config.crk
Expand Down Expand Up @@ -333,6 +334,7 @@ resource "ibm_container_vpc_worker_pool" "autoscaling_pool" {
cluster = local.cluster_id
worker_pool_name = each.value.pool_name
flavor = each.value.machine_type
operating_system = each.value.operating_system
worker_count = each.value.workers_per_zone
labels = each.value.labels
crk = each.value.boot_volume_encryption_kms_config == null ? null : each.value.boot_volume_encryption_kms_config.crk
Expand Down

0 comments on commit edcbaf1

Please sign in to comment.