summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/sops/playbooks
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:03:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:03:42 +0000
commit66cec45960ce1d9c794e9399de15c138acb18aed (patch)
tree59cd19d69e9d56b7989b080da7c20ef1a3fe2a5a /ansible_collections/community/sops/playbooks
parentInitial commit. (diff)
downloadansible-66cec45960ce1d9c794e9399de15c138acb18aed.tar.xz
ansible-66cec45960ce1d9c794e9399de15c138acb18aed.zip
Adding upstream version 7.3.0+dfsg.upstream/7.3.0+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/sops/playbooks')
-rw-r--r--ansible_collections/community/sops/playbooks/install.yml12
-rw-r--r--ansible_collections/community/sops/playbooks/install_localhost.yml14
2 files changed, 26 insertions, 0 deletions
diff --git a/ansible_collections/community/sops/playbooks/install.yml b/ansible_collections/community/sops/playbooks/install.yml
new file mode 100644
index 00000000..faff3b99
--- /dev/null
+++ b/ansible_collections/community/sops/playbooks/install.yml
@@ -0,0 +1,12 @@
+---
+# Copyright (c) Ansible Project
+# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
+# SPDX-License-Identifier: GPL-3.0-or-later
+
+- name: Install sops
+ gather_facts: true
+ hosts: all
+ tasks:
+ - name: Install sops on remote hosts
+ ansible.builtin.include_role:
+ name: community.sops.install
diff --git a/ansible_collections/community/sops/playbooks/install_localhost.yml b/ansible_collections/community/sops/playbooks/install_localhost.yml
new file mode 100644
index 00000000..55f65152
--- /dev/null
+++ b/ansible_collections/community/sops/playbooks/install_localhost.yml
@@ -0,0 +1,14 @@
+---
+# Copyright (c) Ansible Project
+# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
+# SPDX-License-Identifier: GPL-3.0-or-later
+
+- name: Install sops on localhost
+ gather_facts: false
+ hosts: localhost
+ tasks:
+ - name: Install sops on localhost
+ ansible.builtin.include_role:
+ name: community.sops.install
+ vars:
+ sops_install_on_localhost: true