From 8a7fbaee0b661437518f6960adaab303cae24523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Arapiles?= Date: Thu, 27 Jul 2023 13:16:39 +0200 Subject: [PATCH] First commit --- .ansible-lint | 10 + .github/CODE_OF_CONDUCT.md | 74 ++ .github/CONTRIBUTING.md | 100 ++ .github/ISSUE_TEMPLATE.md | 36 + .github/PULL_REQUEST_TEMPLATE.md | 26 + .gitignore | 14 + .travis.yml | 22 + .yamllint | 31 + CHANGELOG.md | 10 + LICENSE | 70 ++ Pipfile | 19 + Pipfile.lock | 882 ++++++++++++++++++ README.md | 121 +++ ansible.cfg | 3 + defaults/main.yml | 33 + handlers/main.yml | 7 + logo.gif | Bin 0 -> 24279 bytes meta/main.yml | 19 + molecule/default/Dockerfile.j2 | 11 + molecule/default/converge.yml | 5 + molecule/default/files/test-log.log | 6 + .../group_vars/filebeat_group/main.yml | 14 + molecule/default/molecule.yml | 37 + molecule/default/prepare.yml | 8 + molecule/default/templates/filebeat.yml.j2 | 16 + molecule/default/tests/test_default.yml | 43 + molecule/default/verify.yml | 63 ++ tasks/config.yml | 32 + tasks/install.yml | 44 + tasks/main.yml | 15 + tasks/service.yml | 8 + templates/filebeat.yml.j2 | 2 + templates/filebeat_service.config.j2 | 7 + test-requirements.txt | 7 + vars/main.yml | 1 + 35 files changed, 1796 insertions(+) create mode 100644 .ansible-lint create mode 100644 .github/CODE_OF_CONDUCT.md create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 .yamllint create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 Pipfile create mode 100644 Pipfile.lock create mode 100644 README.md create mode 100644 ansible.cfg create mode 100644 defaults/main.yml create mode 100644 handlers/main.yml create mode 100644 logo.gif create mode 100644 meta/main.yml create mode 100644 molecule/default/Dockerfile.j2 create mode 100644 molecule/default/converge.yml create mode 100644 molecule/default/files/test-log.log create mode 100644 molecule/default/group_vars/filebeat_group/main.yml create mode 100644 molecule/default/molecule.yml create mode 100644 molecule/default/prepare.yml create mode 100644 molecule/default/templates/filebeat.yml.j2 create mode 100644 molecule/default/tests/test_default.yml create mode 100644 molecule/default/verify.yml create mode 100644 tasks/config.yml create mode 100644 tasks/install.yml create mode 100644 tasks/main.yml create mode 100644 tasks/service.yml create mode 100644 templates/filebeat.yml.j2 create mode 100644 templates/filebeat_service.config.j2 create mode 100644 test-requirements.txt create mode 100644 vars/main.yml diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..e2bad30 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,10 @@ +--- +exclude_paths: + - ./molecule +parseable: true +warn_list: + - fqcn-builtins +skip_list: + - '204' +use_default_rules: true +verbosity: 1 diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..2461d80 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [labs@idealista.com](mailto:labs@idealista.com). All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..4715174 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,100 @@ +# Contributing to Idealista + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +The following is a set of guidelines for contributing to Idealista's repositories, which are hosted in the [Idealista Organization](https://github.com/idealista) on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. + +#### Table Of Contents + +[Code of Conduct](#code-of-conduct) + +[How Can I Contribute?](#how-can-i-contribute) + * [Reporting Bugs](#reporting-bugs) + * [Suggesting Enhancements](#suggesting-enhancements) + * [Pull Requests](#pull-requests) + * [Changelog](#changelog) + +[Styleguides](#styleguides) + * [Git Commit Messages](#git-commit-messages) + +## Code of Conduct + +This project and everyone participating in it is governed by the [Idealista Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [labs@idealista.com](mailto:labs@idealista.com). + + +## How Can I Contribute? + +### Reporting Bugs + +This section guides you through submitting a bug report for Idealista. Following these guidelines helps maintainers and the community understand your report :pencil:, reproduce the behavior :computer: :computer:, and find related reports :mag_right:. + +Before creating bug reports, please check [this list](#before-submitting-a-bug-report) as you might find out that you don't need to create one. When you are creating a bug report, please [include as many details as possible](#how-do-i-submit-a-good-bug-report). Fill out [the required template](ISSUE_TEMPLATE.md), the information it asks for helps us resolve issues faster. + +> **Note:** If you find a **Closed** issue that seems like it is the same thing that you're experiencing, open a new issue and include a link to the original issue in the body of your new one. + +#### Before Submitting A Bug Report + +* **Check the last version.** Check if you can reproduce the problem in the latest version of the project. +* **Check the FAQ of the project** for a list of common questions and problems. +* **Perform a [cursory search](https://github.com/issues?q=+is%3Aissue+user%3Aidealista)** to see if the problem has already been reported. If it has **and the issue is still open**, add a comment to the existing issue instead of opening a new one. + +#### How Do I Submit A (Good) Bug Report? + +Bugs are tracked as [GitHub issues](https://guides.github.com/features/issues/). Create an issue on the project repository and provide the following information by filling in [the template](ISSUE_TEMPLATE.md). + +Explain the problem and include additional details to help maintainers reproduce the problem: + +* **Use a clear and descriptive title** for the issue to identify the problem. +* **Describe the exact steps which reproduce the problem** in as many details as possible. +* **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior. +* **Explain which behavior you expected to see instead and why.** + +### Suggesting Enhancements + +This section guides you through submitting an enhancement suggestion for Idealista, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion :pencil: and find related suggestions :mag_right:. + +Before creating enhancement suggestions, please check [this list](#before-submitting-an-enhancement-suggestion) as you might find out that you don't need to create one. When you are creating an enhancement suggestion, please [include as many details as possible](#how-do-i-submit-a-good-enhancement-suggestion). Fill in [the template](ISSUE_TEMPLATE.md), including the steps that you imagine you would take if the feature you're requesting existed. + +#### Before Submitting An Enhancement Suggestion + +* **Check the last version.** Check if you can reproduce the problem in the latest version of the project. +* **Check the FAQ of the project** for a list of common questions and problems. +* **Perform a [cursory search](https://github.com/issues?q=+is%3Aissue+user%3Aidealista)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. + +#### How Do I Submit A (Good) Enhancement Suggestion? + +Enhancement suggestions are tracked as [GitHub issues](https://guides.github.com/features/issues/). Create an issue on the project repository and provide the following information by filling in [the template](ISSUE_TEMPLATE.md): + +* **Use a clear and descriptive title** for the issue to identify the suggestion. +* **Provide a step-by-step description of the suggested enhancement** in as many details as possible. +* **Provide specific examples to demonstrate the steps**. +* **Describe the current behavior** and **explain which behavior you expected to see instead** and why. +* **Explain why this enhancement would be useful**. +* **List some other text editors or applications where this enhancement exists.** +* **Specify which version are you're using.** + +### Pull Requests + +* Fill in [the required template](PULL_REQUEST_TEMPLATE.md) +* Any pull request should has **idealista:develop** as base branch. + +### Changelog + +Every project has a CHANGELOG.md file. Once your code is ready to be merged please fill the issue after the **Unreleased** section as explained: + +* For an enhancement, fill the issue after the **Added** subsection (create it if doesn't exists) +* For a fixed bug, fill the issue after the **Fixed** subsection (create it if doesn't exists) +* For an improvement, fill the issue after the **Changed** subsection (create it if doesn't exists) + +Then write the issue info this way: + +- *[#29](https://github.com/idealista/nginx-role/issues/29) Support debian stretch* @jmonterrubio + +## Styleguides + +### Git Commit Messages + +* Use the present tense ("Add feature" not "Added feature") +* Use the imperative mood ("Move cursor to..." not "Moves cursor to...") +* Limit the first line to 72 characters or less +* Reference issues and pull requests liberally after the first line diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..3b123be --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,36 @@ + + +### Prerequisites + +* [ ] Put an X between the brackets on this line if you have done all of the following: + * Checked that your issue isn't already filled: https://github.com/issues?utf8=✓&q=is%3Aissue+user%3Aidealista + * Checked that there is not already provided the described functionality + +### Description + +[Description of the issue] + +### Steps to Reproduce + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Expected behavior:** [What you expect to happen] + +**Actual behavior:** [What actually happens] + +**Reproduces how often:** [What percentage of the time does it reproduce?] + +### Versions + +The version/s you notice the behavior. + +### Additional Information + +Any additional information, configuration or data that might be necessary to reproduce the issue. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..8fa0af8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,26 @@ +### Requirements + +* Filling out the template is required. Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion. +* All new code requires tests to ensure against regressions +* Remember to set **idealista:develop** as base branch; + +### Description of the Change + + + + +### Benefits + + + +### Possible Drawbacks + + + +### Applicable Issues + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c644c99 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +tests/playbook.retry +tests/.cache +__pycache__ +.pytest_cache +.molecule +.vagrant +.cache + +*.iml +.idea +.project + +*.pyc +**/.vscode \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c834ce8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +--- +dist: focal +language: python +python: "3.9" +os: linux +services: + - docker + +install: + - pip install -I pipenv + - pipenv sync +env: + - MOLECULE_DISTRO=debian:buster-slim FILEBEAT_VERSION=8.9.0 + - MOLECULE_DISTRO=debian:bullseye-slim FILEBEAT_VERSION=8.9.0 + - MOLECULE_DISTRO=debian:buster-slim FILEBEAT_VERSION=7.17.12 + - MOLECULE_DISTRO=debian:bullseye-slim FILEBEAT_VERSION=7.17.12 +script: + - pipenv run molecule test --all + +notifications: + webhooks: + - https://galaxy.ansible.com/api/v1/notifications/ diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..ca809df --- /dev/null +++ b/.yamllint @@ -0,0 +1,31 @@ +--- +# Based on ansible-lint config +extends: default + +ignore: | + .travis.yml + molecule/**/tests + +rules: + braces: + max-spaces-inside: 1 + level: error + brackets: + max-spaces-inside: 1 + level: error + colons: + max-spaces-after: -1 + level: error + commas: + max-spaces-after: -1 + level: error + empty-lines: + max: 3 + level: error + hyphens: + level: error + key-duplicates: enable + line-length: disable + new-lines: + type: unix + truthy: disable diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b472fce --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Change Log +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [1.0.0] - 2023-07-27 +- First release @adrian-arapiles + +[1.0.0]: https://github.com/idealista/filebeat_role/tree/1.0.0 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a050b78 --- /dev/null +++ b/LICENSE @@ -0,0 +1,70 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + + Copyright 2019 Idealista S.A.U. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..ae9c6ae --- /dev/null +++ b/Pipfile @@ -0,0 +1,19 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +ansible = "==5.10.0" +molecule = "==3.6.1" +docker = "==5.0.3" +molecule-docker = "==1.1.0" +ansible-lint = "==6.2.1" +jmespath = "==0.10.0" +ansible-compat = "==3.0.2" +urllib3 = "<2.0.0" + +[dev-packages] + +[requires] +python_version = "3.9" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..3a34ff8 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,882 @@ +{ + "_meta": { + "hash": { + "sha256": "df6d1ce5f1fe915078c1fbc27b7376548d107a1676f81eb31c4ccb4f390ee2d1" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.9" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "ansible": { + "hashes": [ + "sha256:c77f556a7c3d9948f86639c5742aa885be25a7cdbda3bfb41a8314b60a3341e8" + ], + "index": "pypi", + "version": "==5.10.0" + }, + "ansible-compat": { + "hashes": [ + "sha256:1c051fb7cedd7a067c5b8fca86e76109bff69cdd31115dea751e3166296a73da", + "sha256:a10ea191f9efe08590ff64cb46a31af1f8142c08618db1a4bc827ed257c68230" + ], + "index": "pypi", + "version": "==3.0.2" + }, + "ansible-core": { + "hashes": [ + "sha256:feb1df61738cfc1f5e893b42a2ec1a7de32977d67e86707b45eb63d0c5c3c236" + ], + "markers": "python_version >= '3.8'", + "version": "==2.12.10" + }, + "ansible-lint": { + "hashes": [ + "sha256:06eb5c97a2f847a6cf8db74269a749bb67df1da429e0e9a51efc84ef3b6ed1fa", + "sha256:ca0deee5835cbfaf9bba182758688a88a0b9c6852b32b15e77e4b0376c21bc1f" + ], + "index": "pypi", + "version": "==6.2.1" + }, + "arrow": { + "hashes": [ + "sha256:3934b30ca1b9f292376d9db15b19446088d12ec58629bc3f0da28fd55fb633a1", + "sha256:5a49ab92e3b7b71d96cd6bfcc4df14efefc9dfa96ea19045815914a6ab6b1fe2" + ], + "markers": "python_version >= '3.6'", + "version": "==1.2.3" + }, + "attrs": { + "hashes": [ + "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04", + "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" + ], + "markers": "python_version >= '3.7'", + "version": "==23.1.0" + }, + "bcrypt": { + "hashes": [ + "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535", + "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0", + "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410", + "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd", + "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665", + "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab", + "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71", + "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215", + "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b", + "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda", + "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9", + "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a", + "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344", + "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f", + "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d", + "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c", + "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c", + "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2", + "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d", + "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e", + "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3" + ], + "markers": "python_version >= '3.6'", + "version": "==4.0.1" + }, + "binaryornot": { + "hashes": [ + "sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061", + "sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4" + ], + "version": "==0.4.4" + }, + "bracex": { + "hashes": [ + "sha256:351b7f20d56fb9ea91f9b9e9e7664db466eb234188c175fd943f8f755c807e73", + "sha256:e7b23fc8b2cd06d3dec0692baabecb249dda94e06a617901ff03a6c56fd71693" + ], + "markers": "python_version >= '3.7'", + "version": "==2.3.post1" + }, + "cerberus": { + "hashes": [ + "sha256:302e6694f206dd85cb63f13fd5025b31ab6d38c99c50c6d769f8fa0b0f299589" + ], + "markers": "python_version >= '2.7'", + "version": "==1.3.2" + }, + "certifi": { + "hashes": [ + "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082", + "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" + ], + "markers": "python_version >= '3.6'", + "version": "==2023.7.22" + }, + "cffi": { + "hashes": [ + "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5", + "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef", + "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104", + "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426", + "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405", + "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375", + "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a", + "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e", + "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc", + "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf", + "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185", + "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497", + "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3", + "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35", + "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c", + "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83", + "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21", + "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca", + "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984", + "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac", + "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd", + "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee", + "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a", + "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2", + "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192", + "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7", + "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585", + "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f", + "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e", + "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27", + "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b", + "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e", + "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e", + "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d", + "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c", + "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415", + "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82", + "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02", + "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314", + "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325", + "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c", + "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3", + "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914", + "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045", + "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d", + "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9", + "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5", + "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2", + "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c", + "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3", + "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2", + "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8", + "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d", + "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d", + "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9", + "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162", + "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76", + "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4", + "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e", + "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9", + "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6", + "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b", + "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01", + "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0" + ], + "version": "==1.15.1" + }, + "chardet": { + "hashes": [ + "sha256:0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5", + "sha256:362777fb014af596ad31334fde1e8c327dfdb076e1960d1694662d46a6917ab9" + ], + "markers": "python_version >= '3.7'", + "version": "==5.1.0" + }, + "charset-normalizer": { + "hashes": [ + "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96", + "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c", + "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710", + "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706", + "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020", + "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252", + "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad", + "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329", + "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a", + "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f", + "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6", + "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4", + "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a", + "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46", + "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2", + "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23", + "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace", + "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd", + "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982", + "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10", + "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2", + "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea", + "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09", + "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5", + "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149", + "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489", + "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9", + "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80", + "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592", + "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3", + "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6", + "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed", + "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c", + "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200", + "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a", + "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e", + "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d", + "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6", + "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623", + "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669", + "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3", + "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa", + "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9", + "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2", + "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f", + "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1", + "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4", + "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a", + "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8", + "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3", + "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029", + "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f", + "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959", + "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22", + "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7", + "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952", + "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346", + "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e", + "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d", + "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299", + "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd", + "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a", + "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3", + "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037", + "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94", + "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c", + "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858", + "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a", + "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449", + "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c", + "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918", + "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1", + "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c", + "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac", + "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa" + ], + "markers": "python_full_version >= '3.7.0'", + "version": "==3.2.0" + }, + "click": { + "hashes": [ + "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd", + "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5" + ], + "markers": "python_version >= '3.7'", + "version": "==8.1.6" + }, + "click-help-colors": { + "hashes": [ + "sha256:25a6bd22d8abbc72c18a416a1cf21ab65b6120bee48e9637829666cbad22d51d", + "sha256:78cbcf30cfa81c5fc2a52f49220121e1a8190cd19197d9245997605d3405824d" + ], + "version": "==0.9.1" + }, + "cookiecutter": { + "hashes": [ + "sha256:17ad6751aef0a39d004c5ecacbd18176de6e83505343073fd7e48b60bdac5254", + "sha256:d56f18c0c01c09804450b501ac43e8f6104cfa7cdd93610359c68b1ba9fd84d2" + ], + "markers": "python_version >= '3.7'", + "version": "==2.2.3" + }, + "cryptography": { + "hashes": [ + "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711", + "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7", + "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd", + "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e", + "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58", + "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0", + "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d", + "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83", + "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831", + "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766", + "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b", + "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c", + "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182", + "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f", + "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa", + "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4", + "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a", + "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2", + "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76", + "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5", + "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee", + "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f", + "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14" + ], + "markers": "python_version >= '3.7'", + "version": "==41.0.2" + }, + "docker": { + "hashes": [ + "sha256:7a79bb439e3df59d0a72621775d600bc8bc8b422d285824cb37103eab91d1ce0", + "sha256:d916a26b62970e7c2f554110ed6af04c7ccff8e9f81ad17d0d40c75637e227fb" + ], + "index": "pypi", + "version": "==5.0.3" + }, + "enrich": { + "hashes": [ + "sha256:0a2ab0d2931dff8947012602d1234d2a3ee002d9a355b5d70be6bf5466008893", + "sha256:f29b2c8c124b4dbd7c975ab5c3568f6c7a47938ea3b7d2106c8a3bd346545e4f" + ], + "markers": "python_version >= '3.6'", + "version": "==1.2.7" + }, + "exceptiongroup": { + "hashes": [ + "sha256:12c3e887d6485d16943a309616de20ae5582633e0a2eda17f4e10fd61c1e8af5", + "sha256:e346e69d186172ca7cf029c8c1d16235aa0e04035e5750b4b95039e65204328f" + ], + "markers": "python_version < '3.11'", + "version": "==1.1.2" + }, + "idna": { + "hashes": [ + "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", + "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" + ], + "markers": "python_version >= '3.5'", + "version": "==3.4" + }, + "iniconfig": { + "hashes": [ + "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", + "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" + ], + "markers": "python_version >= '3.7'", + "version": "==2.0.0" + }, + "jinja2": { + "hashes": [ + "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", + "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + ], + "markers": "python_version >= '3.7'", + "version": "==3.1.2" + }, + "jmespath": { + "hashes": [ + "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9", + "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f" + ], + "index": "pypi", + "version": "==0.10.0" + }, + "jsonschema": { + "hashes": [ + "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe", + "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d" + ], + "markers": "python_version >= '3.8'", + "version": "==4.18.4" + }, + "jsonschema-specifications": { + "hashes": [ + "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1", + "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb" + ], + "markers": "python_version >= '3.8'", + "version": "==2023.7.1" + }, + "markdown-it-py": { + "hashes": [ + "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", + "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" + ], + "markers": "python_version >= '3.8'", + "version": "==3.0.0" + }, + "markupsafe": { + "hashes": [ + "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e", + "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e", + "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431", + "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686", + "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559", + "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc", + "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c", + "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0", + "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4", + "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9", + "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575", + "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba", + "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d", + "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3", + "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00", + "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155", + "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac", + "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52", + "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f", + "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8", + "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b", + "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24", + "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea", + "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198", + "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0", + "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee", + "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be", + "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2", + "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707", + "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6", + "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58", + "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779", + "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636", + "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c", + "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad", + "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee", + "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc", + "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2", + "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48", + "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7", + "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e", + "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b", + "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa", + "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5", + "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e", + "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb", + "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9", + "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57", + "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc", + "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2" + ], + "markers": "python_version >= '3.7'", + "version": "==2.1.3" + }, + "mdurl": { + "hashes": [ + "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", + "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" + ], + "markers": "python_version >= '3.7'", + "version": "==0.1.2" + }, + "molecule": { + "hashes": [ + "sha256:3b7d5ba2978c15a034df8c7aa59dec5436f7d3260d1f9db2c78ae14ae3a9deeb", + "sha256:f7f57d6b3b775e876bea2a46e368eee72d391e163f8175acf29fef797a280248" + ], + "index": "pypi", + "version": "==3.6.1" + }, + "molecule-docker": { + "hashes": [ + "sha256:e15133395f10dbf60f75125aae7145f47747fc7158f2317698885013796252bf", + "sha256:fc4fd84a0e98787c47b97e59bf9697bdeddfcacc67c09af271183b55e09a7d7a" + ], + "index": "pypi", + "version": "==1.1.0" + }, + "packaging": { + "hashes": [ + "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61", + "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f" + ], + "markers": "python_version >= '3.7'", + "version": "==23.1" + }, + "paramiko": { + "hashes": [ + "sha256:376885c05c5d6aa6e1f4608aac2a6b5b0548b1add40274477324605903d9cd49", + "sha256:b2df1a6325f6996ef55a8789d0462f5b502ea83b3c990cbb5bbe57345c6812c4" + ], + "version": "==2.12.0" + }, + "pathspec": { + "hashes": [ + "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687", + "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293" + ], + "markers": "python_version >= '3.7'", + "version": "==0.11.1" + }, + "pluggy": { + "hashes": [ + "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849", + "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3" + ], + "markers": "python_version >= '3.7'", + "version": "==1.2.0" + }, + "pycparser": { + "hashes": [ + "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", + "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" + ], + "version": "==2.21" + }, + "pygments": { + "hashes": [ + "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c", + "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1" + ], + "markers": "python_version >= '3.7'", + "version": "==2.15.1" + }, + "pynacl": { + "hashes": [ + "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", + "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", + "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", + "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", + "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", + "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", + "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", + "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", + "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", + "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543" + ], + "markers": "python_version >= '3.6'", + "version": "==1.5.0" + }, + "pytest": { + "hashes": [ + "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32", + "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a" + ], + "markers": "python_version >= '3.7'", + "version": "==7.4.0" + }, + "python-dateutil": { + "hashes": [ + "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", + "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.8.2" + }, + "python-slugify": { + "hashes": [ + "sha256:70ca6ea68fe63ecc8fa4fcf00ae651fc8a5d02d93dcd12ae6d4fc7ca46c4d395", + "sha256:ce0d46ddb668b3be82f4ed5e503dbc33dd815d83e2eb6824211310d3fb172a27" + ], + "markers": "python_version >= '3.7'", + "version": "==8.0.1" + }, + "pyyaml": { + "hashes": [ + "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc", + "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741", + "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206", + "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27", + "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595", + "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62", + "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98", + "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696", + "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d", + "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867", + "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47", + "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486", + "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6", + "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3", + "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007", + "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938", + "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c", + "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735", + "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d", + "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", + "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", + "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", + "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", + "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", + "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0", + "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515", + "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c", + "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c", + "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924", + "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34", + "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", + "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859", + "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673", + "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a", + "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab", + "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa", + "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c", + "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585", + "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", + "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" + ], + "markers": "python_version >= '3.6'", + "version": "==6.0.1" + }, + "referencing": { + "hashes": [ + "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b", + "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548" + ], + "markers": "python_version >= '3.8'", + "version": "==0.30.0" + }, + "requests": { + "hashes": [ + "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", + "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + ], + "markers": "python_version >= '3.7'", + "version": "==2.31.0" + }, + "resolvelib": { + "hashes": [ + "sha256:8113ae3ed6d33c6be0bcbf03ffeb06c0995c099b7b8aaa5ddf2e9b3b3df4e915", + "sha256:9b9b80d5c60e4c2a8b7fbf0712c3449dc01d74e215632e5199850c9eca687628" + ], + "version": "==0.5.4" + }, + "rich": { + "hashes": [ + "sha256:8f87bc7ee54675732fa66a05ebfe489e27264caeeff3728c945d25971b6485ec", + "sha256:d653d6bccede5844304c605d5aac802c7cf9621efd700b46c7ec2b51ea914898" + ], + "markers": "python_full_version >= '3.7.0'", + "version": "==13.4.2" + }, + "rpds-py": { + "hashes": [ + "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f", + "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238", + "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f", + "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f", + "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c", + "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298", + "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260", + "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1", + "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d", + "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7", + "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f", + "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876", + "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe", + "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be", + "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32", + "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3", + "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18", + "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d", + "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620", + "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b", + "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae", + "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496", + "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1", + "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67", + "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f", + "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764", + "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196", + "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e", + "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846", + "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b", + "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d", + "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26", + "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e", + "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044", + "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c", + "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d", + "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad", + "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d", + "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab", + "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920", + "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e", + "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872", + "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3", + "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611", + "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4", + "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c", + "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193", + "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af", + "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10", + "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd", + "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f", + "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b", + "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945", + "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752", + "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c", + "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387", + "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8", + "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d", + "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931", + "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03", + "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502", + "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f", + "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55", + "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82", + "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798", + "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a", + "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b", + "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa", + "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f", + "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192", + "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020", + "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7", + "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1", + "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386", + "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90", + "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f", + "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe", + "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596", + "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f", + "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387", + "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16", + "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e", + "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b", + "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6", + "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1", + "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de", + "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0", + "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3", + "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468", + "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e", + "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd", + "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324", + "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c", + "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535", + "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55", + "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6", + "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07" + ], + "markers": "python_version >= '3.8'", + "version": "==0.9.2" + }, + "ruamel.yaml": { + "hashes": [ + "sha256:23cd2ed620231677564646b0c6a89d138b6822a0d78656df7abda5879ec4f447", + "sha256:ec939063761914e14542972a5cba6d33c23b0859ab6342f61cf070cfc600efc2" + ], + "markers": "python_version >= '3'", + "version": "==0.17.32" + }, + "ruamel.yaml.clib": { + "hashes": [ + "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e", + "sha256:15910ef4f3e537eea7fe45f8a5d19997479940d9196f357152a09031c5be59f3", + "sha256:184faeaec61dbaa3cace407cffc5819f7b977e75360e8d5ca19461cd851a5fc5", + "sha256:1a6391a7cabb7641c32517539ca42cf84b87b667bad38b78d4d42dd23e957c81", + "sha256:1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497", + "sha256:2aa261c29a5545adfef9296b7e33941f46aa5bbd21164228e833412af4c9c75f", + "sha256:3110a99e0f94a4a3470ff67fc20d3f96c25b13d24c6980ff841e82bafe827cac", + "sha256:3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697", + "sha256:370445fd795706fd291ab00c9df38a0caed0f17a6fb46b0f607668ecb16ce763", + "sha256:40d030e2329ce5286d6b231b8726959ebbe0404c92f0a578c0e2482182e38282", + "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94", + "sha256:4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1", + "sha256:4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072", + "sha256:5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9", + "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231", + "sha256:7bdb4c06b063f6fd55e472e201317a3bb6cdeeee5d5a38512ea5c01e1acbdd93", + "sha256:8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b", + "sha256:91a789b4aa0097b78c93e3dc4b40040ba55bef518f84a40d4442f713b4094acb", + "sha256:92460ce908546ab69770b2e576e4f99fbb4ce6ab4b245345a3869a0a0410488f", + "sha256:99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307", + "sha256:9c7617df90c1365638916b98cdd9be833d31d337dbcd722485597b43c4a215bf", + "sha256:a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8", + "sha256:a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b", + "sha256:be2a7ad8fd8f7442b24323d24ba0b56c51219513cfa45b9ada3b87b76c374d4b", + "sha256:bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640", + "sha256:c3ca1fbba4ae962521e5eb66d72998b51f0f4d0f608d3c0347a48e1af262efa7", + "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a", + "sha256:d5859983f26d8cd7bb5c287ef452e8aacc86501487634573d260968f753e1d71", + "sha256:d5e51e2901ec2366b79f16c2299a03e74ba4531ddcfacc1416639c557aef0ad8", + "sha256:da538167284de58a52109a9b89b8f6a53ff8437dd6dc26d33b57bf6699153122", + "sha256:debc87a9516b237d0466a711b18b6ebeb17ba9f391eb7f91c649c5c4ec5006c7", + "sha256:df5828871e6648db72d1c19b4bd24819b80a755c4541d3409f0f7acd0f335c80", + "sha256:ecdf1a604009bd35c674b9225a8fa609e0282d9b896c03dd441a91e5f53b534e", + "sha256:efa08d63ef03d079dcae1dfe334f6c8847ba8b645d08df286358b1f5293d24ab", + "sha256:f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0", + "sha256:f34019dced51047d6f70cb9383b2ae2853b7fc4dce65129a5acd49f4f9256646", + "sha256:f6d3d39611ac2e4f62c3128a9eed45f19a6608670c5a2f4f07f24e8de3441d38" + ], + "markers": "python_version < '3.12' and platform_python_implementation == 'CPython'", + "version": "==0.2.7" + }, + "setuptools": { + "hashes": [ + "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f", + "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235" + ], + "markers": "python_version >= '3.7'", + "version": "==68.0.0" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + }, + "subprocess-tee": { + "hashes": [ + "sha256:b3c124993f8b88d1eb1c2fde0bc2069787eac720ba88771cba17e8c93324825d", + "sha256:eca56973a1c1237093c2055b2731bcaab784683b83f22c76f26e4c5763402e28" + ], + "markers": "python_version >= '3.8'", + "version": "==0.4.1" + }, + "text-unidecode": { + "hashes": [ + "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", + "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93" + ], + "version": "==1.3" + }, + "tomli": { + "hashes": [ + "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", + "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" + ], + "markers": "python_version < '3.11'", + "version": "==2.0.1" + }, + "urllib3": { + "hashes": [ + "sha256:8d36afa7616d8ab714608411b4a3b13e58f463aee519024578e062e141dce20f", + "sha256:8f135f6502756bde6b2a9b28989df5fbe87c9970cecaa69041edcce7f0589b14" + ], + "index": "pypi", + "version": "==1.26.16" + }, + "wcmatch": { + "hashes": [ + "sha256:3476cd107aba7b25ba1d59406938a47dc7eec6cfd0ad09ff77193f21a964dee7", + "sha256:b1f042a899ea4c458b7321da1b5e3331e3e0ec781583434de1301946ceadb943" + ], + "markers": "python_version >= '3.7'", + "version": "==8.4.1" + }, + "websocket-client": { + "hashes": [ + "sha256:c951af98631d24f8df89ab1019fc365f2227c0892f12fd150e935607c79dd0dd", + "sha256:f1f9f2ad5291f0225a49efad77abf9e700b6fef553900623060dad6e26503b9d" + ], + "markers": "python_version >= '3.7'", + "version": "==1.6.1" + }, + "yamllint": { + "hashes": [ + "sha256:d01dde008c65de5b235188ab3110bebc59d18e5c65fc8a58267cd211cd9df34a", + "sha256:d97a66e48da820829d96077d76b8dfbe6c6140f106e558dae87e81ac4e6b30b7" + ], + "markers": "python_version >= '3.7'", + "version": "==1.32.0" + } + }, + "develop": {} +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..78049dd --- /dev/null +++ b/README.md @@ -0,0 +1,121 @@ +![Logo](https://raw.githubusercontent.com/idealista/filebeat_role/master/logo.gif) + +[![Build Status](https://travis-ci.com/idealista/filebeat_role.png)](https://travis-ci.com/idealista/filebeat_role) + +# Filebeat Ansible role + +- [Getting Started](#getting-started) + - [Prerequisites](#prerequisites) + - [Installing](#installing) +- [Usage](#usage) +- [Testing](#testing) +- [Built With](#built-with) +- [Versioning](#versioning) +- [Authors](#authors) +- [License](#license) +- [Contributing](#contributing) + +## Getting Started + +Ansible role for 7.x/8.x Filebeat. Currently, this works on Debian based linux systems. Tested platforms are: + +* Debian 10 +* Debian 11 + +These instructions will get you a copy of the role for your ansible playbook. Once launched, it will install [Filebeat](https://www.elastic.co/products/beats/filebeat). +### Prerequisites + +#### To execute this role: + +Minimum Ansible version of 2.10.0 and recommended Ansible 5.8.0 version installed. + +#### For testing purposes: + +* Python 3 +* [Molecule](https://molecule.readthedocs.io/) +* [Pipenv](https://github.com/pypa/pipenv) +* [jmespath](http://jmespath.org/) +* [Docker](https://www.docker.com/) as driver +* [Ansible-lint](https://docs.ansible.com/ansible-lint/) + + +### Installing + +Create or add to your roles dependency file (e.g. requirements.yml): + +```yaml +- src: idealista.filebeat_role + version: 1.0.0 + name: filebeat +``` + +Install the role with ansible-galaxy command: + +``` +ansible-galaxy install -p roles -r requirements.yml -f +``` + +Use in a playbook: + +```yaml +- hosts: someserver + roles: + - role: filebeat +``` + +## Usage + +Look to the [defaults](defaults/main.yml) properties file to see the possible configuration properties. + +**You must configure default template and apply basic configuration, for example:** +```yaml +filebeat: + modules: + inputs: + - type: log + enabled: true + paths: + - /var/log/*.log + encoding: utf8 + +output: + elasticsearch: + hosts: ["elasticsearch-host:9200"] + +logging: + level: info +``` +Also, you can see an example on molecule test. + +## Testing + +```sh +pipenv install -r test-requirements.txt +pipenv run molecule test +``` + +## Built With + +![Ansible](https://img.shields.io/badge/ansible-5.8.0-green.svg) + +## Versioning + +For the versions available, see the [tags on this repository](https://github.com/idealista/filebeat_role/tags). + +Additionally, you can see what change in each version in the [CHANGELOG.md](CHANGELOG.md) file. + +## Authors + +- **Idealista** - *Work with* - [idealista](https://github.com/idealista) + +See also the list of [contributors](https://github.com/idealista/filebeat_role/contributors) who participated in this project. + +## License + +![Apache 2.0 License](https://img.shields.io/hexpm/l/plug.svg) + +This project is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license - see the [LICENSE](LICENSE) file for details. + +## Contributing + +Please read [CONTRIBUTING.md](.github/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us. diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..adc85b5 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,3 @@ +[defaults] +stdout_callback = yaml +bin_ansible_callbacks = True \ No newline at end of file diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..c6fb86c --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,33 @@ +--- +# General +# Change to latest when you want upgrade to last version +filebeat_package_state: present + +filebeat_version: 8.9.0 +filebeat_major_version: "{{ filebeat_version.split('.')[0] }}" +filebeat_gpg_key: https://artifacts.elastic.co/GPG-KEY-elasticsearch +filebeat_ppa_source: deb https://artifacts.elastic.co/packages/{{ filebeat_major_version }}.x/apt stable main + +# Owner +filebeat_user: filebeat +filebeat_group: filebeat + +# Start on boot +filebeat_service_enabled: true + +# Current state: started, stopped +filebeat_service_state: started + +# Files & Paths +filebeat_home_path: /usr/share/filebeat +filebeat_config_path: /etc/filebeat +filebeat_log_path: /var/log/filebeat +filebeat_data_path: /var/lib/filebeat +filebeat_pid_path: /var/run/filebeat + +filebeat_config_file: "{{ role_path }}/templates/filebeat.yml.j2" +filebeat_service_config_file: "{{ role_path }}/templates/filebeat_service.config.j2" + + +filebeat_package_dependencies: + - apt-transport-https diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 0000000..842ef5c --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,7 @@ +--- +- name: Restart filebeat + systemd: + name: filebeat + state: restarted + daemon_reload: yes + when: filebeat_service_state != 'stopped' and not filebeat_service_output.changed diff --git a/logo.gif b/logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..d96f592f538fc16bd38c56d49773ce3c6580ddb5 GIT binary patch literal 24279 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 z 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 K8;>kzKma?o`!g>9 literal 0 HcmV?d00001 diff --git a/meta/main.yml b/meta/main.yml new file mode 100644 index 0000000..f0484cb --- /dev/null +++ b/meta/main.yml @@ -0,0 +1,19 @@ +--- +galaxy_info: + company: Idealista S.A.U + author: idealista + description: Filebeat role + min_ansible_version: 2.8.19 + license: Apache 2.0 + platforms: + - name: Debian + versions: + - buster + - bullseye + galaxy_tags: + - web + - system + - monitoring + - filebeat + - elk + - logging diff --git a/molecule/default/Dockerfile.j2 b/molecule/default/Dockerfile.j2 new file mode 100644 index 0000000..9e3f40e --- /dev/null +++ b/molecule/default/Dockerfile.j2 @@ -0,0 +1,11 @@ +# Molecule managed + +{% if item.registry is defined %} +FROM {{ item.registry.url }}/{{ item.image }} +{% else %} +FROM {{ item.image }} +{% endif %} + +RUN apt-get update && \ + apt-get install -y python sudo bash ca-certificates iproute2 systemd systemd-sysv python3-pip && \ + apt-get clean \ No newline at end of file diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml new file mode 100644 index 0000000..24e9cb1 --- /dev/null +++ b/molecule/default/converge.yml @@ -0,0 +1,5 @@ +--- +- name: Converge + hosts: filebeat + roles: + - role: filebeat_role diff --git a/molecule/default/files/test-log.log b/molecule/default/files/test-log.log new file mode 100644 index 0000000..2e45eb1 --- /dev/null +++ b/molecule/default/files/test-log.log @@ -0,0 +1,6 @@ +test log1 +test log2 +test log3 +test log4 +test log5 +test log6 \ No newline at end of file diff --git a/molecule/default/group_vars/filebeat_group/main.yml b/molecule/default/group_vars/filebeat_group/main.yml new file mode 100644 index 0000000..1988ab1 --- /dev/null +++ b/molecule/default/group_vars/filebeat_group/main.yml @@ -0,0 +1,14 @@ +--- +## General +# Owner +filebeat_config_file: "{{ molecule_scenario_directory }}/templates/filebeat.yml.j2" + +# Elasticsearch configuration +elasticsearch_version: 8.9.0 +elasticsearch_api_host: elastic_filebeat +elasticsearch_config: + node.name: "{{ elasticsearch_api_host }}" + network.host: _site_ + cluster.name: dedup-cluster + discovery.type: single-node + bootstrap.memory_lock: true diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml new file mode 100644 index 0000000..74d8d53 --- /dev/null +++ b/molecule/default/molecule.yml @@ -0,0 +1,37 @@ +--- +dependency: + name: galaxy +driver: + name: docker +lint: | + yamllint . + ansible-lint . +platforms: + - name: filebeat + hostname: filebeat + image: ${MOLECULE_DISTRO:-debian:bullseye-slim} + privileged: false + capabilities: + - SYS_ADMIN + volumes: + - '/sys/fs/cgroup:/sys/fs/cgroup:ro' + groups: + - filebeat_group + tmpfs: + - '/run' + - '/run/lock' + command: '/lib/systemd/systemd' + networks: + - name: filebeat-network + +provisioner: + name: ansible + env: + ANSIBLE_FORCE_COLOR: 1 + PY_COLORS: 1 + inventory: + group_vars: + filebeat_group: + filebeat_version: ${FILEBEAT_VERSION:-8.9.0} +verifier: + name: ansible diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml new file mode 100644 index 0000000..6c4a2f7 --- /dev/null +++ b/molecule/default/prepare.yml @@ -0,0 +1,8 @@ +--- +- name: Prepare + hosts: filebeat + tasks: + - name: Copy test log + copy: + src: "test-log.log" + dest: "/var/log/test-log.log" diff --git a/molecule/default/templates/filebeat.yml.j2 b/molecule/default/templates/filebeat.yml.j2 new file mode 100644 index 0000000..3419337 --- /dev/null +++ b/molecule/default/templates/filebeat.yml.j2 @@ -0,0 +1,16 @@ +--- +{{ ansible_managed | comment }} +filebeat: + modules: + inputs: + - type: log + enabled: true + paths: + - /var/log/test-log.log + encoding: utf8 + +output.console: + pretty: true + +logging: + level: info diff --git a/molecule/default/tests/test_default.yml b/molecule/default/tests/test_default.yml new file mode 100644 index 0000000..b5084f6 --- /dev/null +++ b/molecule/default/tests/test_default.yml @@ -0,0 +1,43 @@ +--- +file: + {{ filebeat_config_path }}: + exists: true + owner: {{ filebeat_user }} + group: {{ filebeat_group }} + filetype: directory + {{ filebeat_data_path }}: + exists: true + owner: {{ filebeat_user }} + group: {{ filebeat_group }} + filetype: directory + {{ filebeat_log_path }}: + exists: true + owner: {{ filebeat_user }} + group: {{ filebeat_group }} + filetype: directory + {{ filebeat_pid_path }}: + exists: true + owner: {{ filebeat_user }} + group: {{ filebeat_group }} + filetype: directory + +group: + {{ filebeat_group }}: + exists: true + gid: + lt: 1000 + +user: + {{ filebeat_user }}: + exists: true + uid: + lt: 1000 + gid: + lt: 1000 + groups: + - {{ filebeat_group }} + +service: + filebeat: + enabled: true + running: true diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml new file mode 100644 index 0000000..a2c4ab4 --- /dev/null +++ b/molecule/default/verify.yml @@ -0,0 +1,63 @@ +--- +# This is an example playbook to execute goss tests. +# Tests need distributed to the appropriate ansible host/groups +# prior to execution by `goss validate`. +# +# The goss ansible module is installed with molecule. The ANSIBLE_LIBRARY +# path is updated appropriately on `molecule verify`. + +# Details about ansible module: +# - https://github.com/indusbox/goss-ansible + +- name: Verify + hosts: filebeat + vars: + goss_version: v0.3.16 + goss_arch: amd64 + goss_dst: /usr/local/bin/goss + goss_sha256sum: 827e354b48f93bce933f5efcd1f00dc82569c42a179cf2d384b040d8a80bfbfb + goss_url: "https://github.com/aelsabbahy/goss/releases/download/{{ goss_version }}/goss-linux-{{ goss_arch }}" + goss_test_directory: /tmp + goss_format: documentation + + vars_files: + - ../../defaults/main.yml + - ../../vars/main.yml + + tasks: + - name: Download and install Goss + get_url: + url: "{{ goss_url }}" + dest: "{{ goss_dst }}" + sha256sum: "{{ goss_sha256sum }}" + mode: 0755 + register: download_goss + until: download_goss is succeeded + retries: 3 + + - name: Copy Goss tests to remote + template: + src: "{{ item }}" + dest: "{{ goss_test_directory }}/{{ item | basename }}" + with_fileglob: + - "tests/test_*.yml" + + - name: Register test files + shell: "ls {{ goss_test_directory }}/test_*.yml" + register: test_files + + - name: Execute Goss tests + command: "{{ goss_dst }} -g {{ item }} validate --format {{ goss_format }}" + register: test_results + with_items: "{{ test_files.stdout_lines }}" + + - name: Display details about the Goss results + debug: + msg: "{{ item.stdout_lines }}" + with_items: "{{ test_results.results }}" + + - name: Fail when tests fail + fail: + msg: "Goss failed to validate" + when: item.rc != 0 + with_items: "{{ test_results.results }}" diff --git a/tasks/config.yml b/tasks/config.yml new file mode 100644 index 0000000..1fab55f --- /dev/null +++ b/tasks/config.yml @@ -0,0 +1,32 @@ +--- +- name: Filebeat | Ensure Filebeat dirs exist + file: + path: "{{ item }}" + state: directory + owner: "{{ filebeat_user }}" + group: "{{ filebeat_group }}" + mode: 0755 + loop: + - "{{ filebeat_config_path }}" + - "{{ filebeat_log_path }}" + - "{{ filebeat_pid_path }}" + - "{{ filebeat_data_path }}" + - "/etc/systemd/system/filebeat.service.d" + +- name: Filebeat | Configure options for filebeat service + template: + src: "{{ filebeat_service_config_file }}" + dest: /etc/systemd/system/filebeat.service.d/default.conf + owner: "{{ filebeat_user }}" + group: "{{ filebeat_group }}" + mode: 0644 + notify: Restart filebeat + +- name: Filebeat | Configure files Filebeat + template: + src: "{{ filebeat_config_file }}" + dest: "{{ filebeat_config_path }}/filebeat.yml" + owner: "{{ filebeat_user }}" + group: "{{ filebeat_group }}" + mode: 0644 + notify: Restart filebeat diff --git a/tasks/install.yml b/tasks/install.yml new file mode 100644 index 0000000..672d3ea --- /dev/null +++ b/tasks/install.yml @@ -0,0 +1,44 @@ +--- +- name: Filebeat | Ensure Filebeat group + group: + name: "{{ filebeat_group }}" + system: yes + +- name: Filebeat | Ensure Filebeat user + user: + name: "{{ filebeat_user }}" + group: "{{ filebeat_group }}" + system: yes + +- name: Filebeat | Add package dependencies + apt: + name: "{{ filebeat_package_dependencies }}" + state: present + update_cache: true + +- name: Filebeat | Add gpg key + apt_key: + url: "{{ filebeat_gpg_key }}" + state: present + +- name: Filebeat | Add ppa repository + apt_repository: + repo: "{{ filebeat_ppa_source }}" + state: present + filename: filebeat + +- name: Filebeat | Install filebeat without version defined + apt: + name: "filebeat" + state: "{{ filebeat_package_state }}" + notify: + - Restart filebeat + when: filebeat_version is not defined + +- name: Filebeat | Install filebeat {{ filebeat_version }} + apt: + name: "filebeat={{ filebeat_version }}" + state: "{{ filebeat_package_state }}" + notify: + - Restart filebeat + when: filebeat_version is defined diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..9e9beb7 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,15 @@ +--- +- name: Filebeat | Install + import_tasks: install.yml + tags: + - filebeat_install + +- name: Filebeat | Configure + import_tasks: config.yml + tags: + - filebeat_configure + +- name: Filebeat | Service + import_tasks: service.yml + tags: + - filebeat_service diff --git a/tasks/service.yml b/tasks/service.yml new file mode 100644 index 0000000..04d5ffc --- /dev/null +++ b/tasks/service.yml @@ -0,0 +1,8 @@ +--- +- name: Filebeat | Starting service + systemd: + name: filebeat + state: "{{ filebeat_service_state }}" + enabled: "{{ filebeat_service_enabled }}" + daemon_reload: true + register: filebeat_service_output diff --git a/templates/filebeat.yml.j2 b/templates/filebeat.yml.j2 new file mode 100644 index 0000000..ea92e1d --- /dev/null +++ b/templates/filebeat.yml.j2 @@ -0,0 +1,2 @@ +--- +{{ ansible_managed | comment }} diff --git a/templates/filebeat_service.config.j2 b/templates/filebeat_service.config.j2 new file mode 100644 index 0000000..72e639a --- /dev/null +++ b/templates/filebeat_service.config.j2 @@ -0,0 +1,7 @@ +{{ ansible_managed | comment }} +[Service] +Environment="BEAT_LOG_OPTS=" +Environment="BEAT_PATH_OPTS=--path.home {{ filebeat_home_path }} --path.config {{ filebeat_config_path }} --path.data {{ filebeat_data_path }} --path.logs {{ filebeat_log_path }}" +Environment="BEAT_CONFIG_OPTS=--c {{ filebeat_config_path }}/filebeat.yml" +User={{ filebeat_user }} +Group={{ filebeat_group }} \ No newline at end of file diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..12e53c4 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,7 @@ +ansible-compat==3.0.2 +ansible-lint==6.2.1 +ansible==5.10.0 +docker==5.0.3 +molecule-docker==1.1.0 +molecule==3.6.1 +urllib3<2.0.0 \ No newline at end of file diff --git a/vars/main.yml b/vars/main.yml new file mode 100644 index 0000000..ed97d53 --- /dev/null +++ b/vars/main.yml @@ -0,0 +1 @@ +---