Bump up Scaleway root volume size

The default seems to be 10G and that's a bit too low
This commit is contained in:
Jérôme Petazzoni
2026-05-12 16:06:29 +02:00
parent fc47f0c49b
commit c3faf56a59

View File

@@ -6,6 +6,9 @@ resource "scaleway_instance_server" "_" {
name = each.value.node_name
enable_dynamic_ip = true
tags = [format("AUTHORIZED_KEY=%s", replace(trimspace(tls_private_key.ssh.public_key_openssh), " ", "_"))]
root_volume {
size_in_gb = 20
}
}
locals {