Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Scaffolder committed May 1, 2024
0 parents commit 9ba588c
Show file tree
Hide file tree
Showing 27 changed files with 643 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "ansible-dev-container-codespaces",
"image": "ghcr.io/ansible/community-ansible-dev-tools:latest",
"containerUser": "podman",
"runArgs": [
"--security-opt",
"seccomp=unconfined",
"--security-opt",
"label=disable",
"--cap-add=SYS_ADMIN",
"--cap-add=SYS_RESOURCE",
"--device",
"/dev/fuse",
"--security-opt",
"apparmor=unconfined",
"--hostname=ansible-dev-container"
],
"updateRemoteUserUID": true,
"customizations": {
"vscode": {
"extensions": ["redhat.ansible"]
}
}
}
24 changes: 24 additions & 0 deletions .devcontainer/docker/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "ansible-dev-container-docker",
"image": "ghcr.io/ansible/community-ansible-dev-tools:latest",
"containerUser": "podman",
"runArgs": [
"--security-opt",
"seccomp=unconfined",
"--security-opt",
"label=disable",
"--cap-add=SYS_ADMIN",
"--cap-add=SYS_RESOURCE",
"--device",
"/dev/fuse",
"--security-opt",
"apparmor=unconfined",
"--hostname=ansible-dev-container"
],
"updateRemoteUserUID": true,
"customizations": {
"vscode": {
"extensions": ["redhat.ansible"]
}
}
}
25 changes: 25 additions & 0 deletions .devcontainer/podman/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "ansible-dev-container-podman",
"image": "ghcr.io/ansible/community-ansible-dev-tools:latest",
"containerUser": "podman",
"runArgs": [
"--security-opt",
"seccomp=unconfined",
"--security-opt",
"label=disable",
"--cap-add=SYS_ADMIN",
"--cap-add=SYS_RESOURCE",
"--device",
"/dev/fuse",
"--security-opt",
"apparmor=unconfined",
"--userns=keep-id:uid=1000,gid=1000",
"--hostname=ansible-dev-container"
],
"updateRemoteUserUID": true,
"customizations": {
"vscode": {
"extensions": ["redhat.ansible"]
}
}
}
3 changes: 3 additions & 0 deletions .github/ansible-code-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
schedule:
interval: "daily"
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: "CI"

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

on: # yamllint disable-line rule:truthy
pull_request:
branches: [main]
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
ansible-lint:
uses: ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main
171 changes: 171 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
.logs/*
*.retry
*.vault
collections/*
!collections/ansible_collections
!collections/requirements.yml
collections/ansible_collections/*
!collections/ansible_collections/parasol-org
collections/ansible_collections/parasol-org/*
!collections/ansible_collections/parasol-org/win-compliance
# https://raw.githubusercontent.com/github/gitignore/main/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["redhat.ansible"]
}
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Parasol-org Win-compliance Ansible Project

## Included content/ Directory Structure

The directory structure follows best practices recommended by the Ansible community. Feel free to customize this template according to your specific project requirements.

```
ansible-project/
|── .devcontainer/
| └── docker/
| └── devcontainer.json
| └── podman/
| └── devcontainer.json
| └── devcontainer.json
|── .github/
| └── workflows/
| └── tests.yml
| └── ansible-code-bot.yml
|── .vscode/
| └── extensions.json
|── collections/
| └── requirements.yml
| └── ansible_collections/
| └── project_org/
| └── project_repo/
| └── README.md
| └── roles/sample_role/
| └── README.md
| └── tasks/main.yml
|── inventory/
| └── groups_vars/
| └── host_vars/
| └── hosts.yml
|── ansible-navigator.yml
|── ansible.cfg
|── devfile.yaml
|── linux_playbook.yml
|── network_playbook.yml
|── README.md
|── site.yml
```

## Compatible with Ansible-lint

Tested with ansible-lint >=24.2.0 releases and the current development version of ansible-core.
10 changes: 10 additions & 0 deletions ansible-navigator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
ansible-navigator:
logging:
level: debug
append: False

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 5 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]
file: $PWD/.logs/ansible-navigator.log

playbook-artifact:
enable: True

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]

Check failure on line 9 in ansible-navigator.yml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[truthy]

Truthy value should be one of \[false, true]
save-as: "$PWD/.logs/{playbook_name}-artifact-{time_stamp}.json"
26 changes: 26 additions & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[defaults]
# Specify the inventory file
inventory = inventory/hosts.yml

# Define the directory for host and group variables
host_vars_inventory = inventory/host_vars
group_vars_inventory = inventory/group_vars

# Specify the collections directory
collections_paths = collections/ansible_collections

# Set the logging verbosity level
verbosity = 2

# Set the default user for SSH connections
remote_user = myuser

# Define the default become method
become_method = sudo

[persistent_connection]
# Controls how long the persistent connection will remain idle before it is destroyed
connect_timeout=30

# Controls the amount of time to wait for response from remote device before timing out persistent connection
command_timeout=30
20 changes: 20 additions & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 1 in catalog-info.yaml

View workflow job for this annotation

GitHub Actions / ansible-lint / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: parasol-org.win-compliance
description: Checks all Windows hosts for compliant configuration
tags:
- ansible
- playbook
annotations:
backstage.io/techdocs-ref: dir:.
github.com/project-slug: amugagaadv/windows-compliance
links:
- url: https://devspaces.apps.ansible-rhdh.testing.ansible.com/#https://github.com/amugagaadv/windows-compliance
title: Open in Ansible development workspaces
icon: web
spec:
type: playbook-project
lifecycle: production
owner: user:default/craig-br
Loading

0 comments on commit 9ba588c

Please sign in to comment.