/
/
/
1---
2# Note: apt_key is deprecated upstream, but still widely used.
3# Replace with dearmor flow if you prefer strict deprecation compliance.
4
5- name: Add Google Linux signing key
6 ansible.builtin.apt_key:
7 url: https://dl.google.com/linux/linux_signing_key.pub
8 state: present
9 become: true
10
11- name: Add Google Chrome APT repo
12 ansible.builtin.apt_repository:
13 repo: "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
14 state: present
15 filename: google-chrome
16 become: true
17
18