nixosTests.ec2-nixops: fix image.imageFile -> image.fileName

The image.imageFile option was renamed to image.fileName. This broke
the ec2-nixops test at evaluation time.
This commit is contained in:
Philip Taron
2026-03-24 15:14:16 -07:00
parent 7494e88f86
commit 4e9154173d

View File

@@ -59,7 +59,7 @@ let
}
];
}).config;
image = "${imageCfg.system.build.amazonImage}/${imageCfg.image.imageFile}";
image = "${imageCfg.system.build.amazonImage}/${imageCfg.image.fileName}";
sshKeys = import ./ssh-keys.nix pkgs;
snakeOilPrivateKey = sshKeys.snakeOilPrivateKey.text;