nixosTests.ec2-config: avoid an evaluation problem

The problem was introduced by commit 97a32bc (within PR #79696).
nixos/tests/common/ec2.nix:6:17 called with unexpected argument 'meta'

Changed files
+3 -1
nixos
tests
common
+3 -1
nixos/tests/common/ec2.nix
···
with pkgs.lib;
{
-
makeEc2Test = { name, image, userData, script, hostname ? "ec2-instance", sshPublicKey ? null }:
+
makeEc2Test = { name, image, userData, script, hostname ? "ec2-instance", sshPublicKey ? null, meta ? {} }:
let
metaData = pkgs.stdenv.mkDerivation {
name = "metadata";
···
machine = create_machine({"startCommand": start_command})
'' + script;
+
+
inherit meta;
};
}