From 02295c1b32d3626bd3cd4d2023ea20aa88fe6597 Mon Sep 17 00:00:00 2001 From: nazunalika Date: Thu, 11 Feb 2021 00:24:32 -0700 Subject: [PATCH] add collections and roles --- collections/README.md | 14 ++++++++++++++ roles/README.md | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 collections/README.md create mode 100644 roles/README.md diff --git a/collections/README.md b/collections/README.md new file mode 100644 index 0000000..a70c7ef --- /dev/null +++ b/collections/README.md @@ -0,0 +1,14 @@ +# Collections + +If you are wanting to use a collection specifically for this, you will need to define it in a `requirements.yml`, otherwise AWX will not install what you need to run your tasks. + +Example: + +``` +--- +# Roles +collections: + - netbox.netbox + - community.aws + - containers.podman +``` diff --git a/roles/README.md b/roles/README.md new file mode 100644 index 0000000..169dbf3 --- /dev/null +++ b/roles/README.md @@ -0,0 +1,14 @@ +# Roles + +If you are wanting to use role specifically for this, you will need to define it in a `requirements.yml`, otherwise AWX will not install what you need to run your tasks. + +Example: + +``` +--- +# Roles +roles: + - rockylinux.ipagetcert + src: https://github.com/rocky-linux/ansible-role-ipa-getcert + version: main +```