Skip to content

Add GPG key to Focal apt repo setup #487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Support for ansible-base (ansible-core `<2.12`).

BUG FIXES:

The Molecule `upgrade` scenario verification test no longer has to be updated on each new NGINX OSS release.
* The Molecule `upgrade` scenario verification test no longer has to be updated on each new NGINX OSS release.
* Add GPG key for Ubuntu Focal during APT repository setup.

## 0.22.0 (December 9, 2021)

Expand Down
8 changes: 8 additions & 0 deletions tasks/amplify/setup-debian.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
---

- name: (Ubuntu 20.04) Add NGINX Amplify apt key
apt_key:
url: https://nginx.org/keys/nginx_signing.key
state: present
become: true
when: ansible_facts['distribution_release'] == "focal"

- name: (Debian/Ubuntu) Add NGINX Amplify agent repository
apt_repository:
filename: nginx-amplify
Expand Down