Ansible playbook to install Bitwarden client via Snap

---
- name: Install Bitwarden Password Manager
  hosts: all
  become: true
  tasks:
    - name: Ensure snapd is installed
      apt:
        name:
          - snapd
          - snap
        state: present
      when: ansible_os_family == "Debian"

    - name: Install Bitwarden snap
      snap:
        name: bitwarden
        state: present