# Access configuration for Baserock OStree cache server. --- - hosts: ostree gather_facts: false sudo: yes tasks: - name: authorized SSH keys for ostree (cache) user authorized_key: user: ostree key: '{{ lookup("file", "{{item}}") }}' with_items: - keys/baserock-gitlab-ci.key.pub - keys/garyperkins.key.pub - keys/jonathanmaw.key.pub - keys/pedroalvarez.key.pub - keys/samthursfield.key.pub - name: authorized SSH keys for ostree-releases user authorized_key: user: ostree-releases key: '{{ lookup("file", "{{item}}") }}' with_items: - keys/baserock-gitlab-ci.key.pub - keys/garyperkins.key.pub - keys/pedroalvarez.key.pub - keys/samthursfield.key.pub