fix: Use use_path_style for s3 backend

This commit is contained in:
Peter 2026-02-18 13:06:11 +01:00
parent 9e2384292d
commit 554f67513f
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg

View file

@ -6,7 +6,7 @@ terraform {
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
force_path_style = true
use_path_style = true
}
}
@ -125,7 +125,7 @@ module "workers" {
name = format("k8s-wheatley-%s", each.value.name)
ipv4_address = each.value.ip_address
cpu = local.workers.cpu
gpu = each.value.gpu_enabled
gpu = each.value.gpu_enabled
memory = local.workers.memory
disk = local.workers.disk
storagepool = local.workers.storagepool
@ -175,7 +175,7 @@ module "talos-bootstrap" {
ipv4_address = node.ip_address
storage_address = node.storage_address
pvc_disks = local.workers.pvc_disks
gpu_enabled = node.gpu_enabled
gpu_enabled = node.gpu_enabled
}
]
)