Server IP : 85.214.239.14 / Your IP : 18.220.194.186 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/sops/roles/install/tasks/ |
Upload File : |
--- # 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 # SPDX-FileCopyrightText: 2022, Felix Fontein - name: Fetch list of releases from GitHub ansible.builtin.uri: headers: Accept: application/vnd.github+json Authorization: "{{ ('Bearer ' ~ sops_github_token) if sops_github_token is defined and sops_github_token else '' }}" status_code: - 200 - 403 # "HTTP Error 403: rate limit exceeded" url: https://api.github.com/repos/mozilla/sops/releases register: _community_sops_install_github_releases delegate_to: localhost run_once: true - name: In case rate limit was exceeded, inform user ansible.builtin.debug: msg: >- Rate limit exceeded! Make sure to provide a GitHub token as `sops_github_token` to reduce the chance of this error. when: _community_sops_install_github_releases.status == 403 - name: Determine the latest release ansible.builtin.set_fact: _community_sops_install_effective_sops_version: >- {{ ( _community_sops_install_github_releases.json | rejectattr("prerelease") | rejectattr("draft") | map(attribute="tag_name") | map("ansible.builtin.regex_replace", "^v", "") | community.sops._latest_version ) if _community_sops_install_github_releases.status == 200 else '' }}