Commit 23d4ad89 authored by Niko Klanecek's avatar Niko Klanecek
Browse files

nixos/amazon-image: default to raw format instead of vpc

With the move to EBS Direct API uploads (PutSnapshotBlock), raw images
can be uploaded directly without conversion, making the qemu-img vpc
conversion step unnecessary.

This avoids a build-time format conversion and simplifies upload
workflows that use the EBS Direct API (e.g. NixOS/amis#364).
parent 115bef8c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ in
        "qcow2"
        "vpc"
      ];
      default = "vpc";
      default = "raw";
      description = "The image format to output";
    };
  };