aloof-gigabyte-74853
02/17/2023, 5:04 PMexport const generateSigningJob = (
signingProfile: aws.signer.GetSigningProfileResult,
bucket: aws.s3.Bucket
) => {
const signingJob = new aws.signer.SigningJob("signing-job", {
source: {
s3: {
bucket: bucket.bucket,
key: "cove_fw.bin",
version: "ynjaE4qqt_.w7V0F_0OzuARKk2586Fuy",
},
},
destination: {
s3: {
bucket: bucket.bucket,
prefix: "SignedImages/",
},
},
profileName: "evcsigningprofile",
ignoreSigningJobFailure: false,
});
return signingJob;
};
I get a SIGSEGVbillowy-army-68599
02/17/2023, 5:11 PMaloof-gigabyte-74853
02/17/2023, 5:15 PM