mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
terraform: use volumes instead of ephemeral local disks on STACKIT
Ephemeral local disks are discouraged on STACKIT. Use volumes instead. This sets an upper bound of 5GB on the boot disk. If Constellation OS images ever grow beyond that, we will run into problems.
This commit is contained in:
parent
5e40f49ca4
commit
f5c5413284
@ -58,7 +58,8 @@ resource "openstack_compute_instance_v2" "instance_group_member" {
|
||||
block_device {
|
||||
uuid = var.image_id
|
||||
source_type = "image"
|
||||
destination_type = "local"
|
||||
destination_type = "volume"
|
||||
volume_size = "5"
|
||||
boot_index = 0
|
||||
delete_on_termination = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user