@kstol The key from the install guide docs has been updated, as the previous key expired back in June.
$ gpg --show-key keys/pgp/FB5DB77FD5C118B80511ADA8A6310ACC4672475C.asc
pub rsa4096 2019-09-18 [SC] [expired: 2024-07-26]
FB5DB77FD5C118B80511ADA8A6310ACC4672475C
uid AWS CLI Team <aws-cli@amazon.com>
Updated:
$ gpg --show-key cool-new-key-from-aws.asc
pub rsa4096 2019-09-18 [SC] [expires: 2025-07-24]
FB5DB77FD5C118B80511ADA8A6310ACC4672475C
uid AWS CLI Team <aws-cli@amazon.com>
Would you mind updating the key included here?
Pinned Comments
kstolp commented on 2024-10-23 05:14 (UTC)
If you receive this error when trying to build, it is because you have not imported the GPG keys used for verification.
You have two options:
1) Import the key into your keyring. ArchWiki article. The key is available in this repo, which is copied from the AWS documentation. e.g.
gpg --import keys/pgp/FB5DB77FD5C118B80511ADA8A6310ACC4672475C.asc
. (recommended)2) Alternatively, you can skip this verification by passing the
--skippgpcheck
argument tomakepkg
when building. (not recommended)