gorgeous-ability-71963
07/26/2022, 7:27 PMencryptedSecret
on the stack outputs?
I’ve tried this:
const lbUser = new aws.iam.User("lbUser", {path: "/system/"});
const lbAccessKey = new aws.iam.AccessKey("lbAccessKey", {
user: lbUser.name,
});
export const secret = lbAccessKey.encryptedSecret;
But this does not exports the secret. The pgpKey
parameter is required? If so, how do I generate one?secret
instead of encryptedSecret
.