diff --git a/README.md b/README.md index 1accccb..579f8ec 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ ansible-playbook playbooks/install_demo.yml -e @choose_demo.yml # Demo Repository -This repository currently holds 11 demos. +This repository currently holds 14 demos. ## Infrastructure Demos @@ -48,7 +48,7 @@ This repository currently holds 11 demos. - + @@ -56,7 +56,7 @@ This repository currently holds 11 demos. - + @@ -64,7 +64,7 @@ This repository currently holds 11 demos. - + @@ -72,7 +72,7 @@ This repository currently holds 11 demos. - + @@ -80,7 +80,15 @@ This repository currently holds 11 demos. - + + + + + + + + + @@ -88,7 +96,7 @@ This repository currently holds 11 demos. - + @@ -111,6 +119,22 @@ This repository currently holds 11 demos. + + + + + + + + + + + + + + + + @@ -138,7 +162,7 @@ This repository currently holds 11 demos. - + @@ -146,7 +170,7 @@ This repository currently holds 11 demos. - +
demo: deploy_application
install yum applications on Linux with a survey Video Link
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
SERVER / Fact Scan
demo: fact_scan
scan facts for Linux and Windows systems Not available
  • f5
  • rhel
  • windows
  • f5
  • rhel
  • windows
  • rhel_90
SERVER / Gather Debug Info
demo: debug_info
provide info for memory and CPU usage for specified systems Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
SERVER / Grant Sudo
demo: grant_sudo
grant sudo privledges for specified time via survey Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
SERVER / Patching
demo: patching
patching for Linux servers Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
SERVER / Red Hat InsightsSean Cavanaugh
demo: insights
install and configure Red Hat InsightsNot available
  • f5
  • rhel
  • rhel_90
SERVER / Security Patching
demo: security_patching
upgrade all yum packages for security related except kernel Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
Windows IIS ServerVideo Walkthrough Workshop Types
Cisco IOS logging config audit/remediationColin McCarthy
demo: configlet_logging
Cisco IOS logging config audit/remediationNot available
  • network
Cisco IOS ntp config audit/remediationColin McCarthy
demo: configlet_ntp
Cisco IOS ntp config audit/remediationNot available
  • network
WORKFLOW - F5 BIG-IP Sean Cavanaugh
demo: openscap
Create HTML report using SCAP Security Guide (SSG) Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
SERVER / Hardening
demo: hardening
hardening for Linux servers Not available
  • f5
  • rhel
  • f5
  • rhel
  • rhel_90
@@ -165,9 +189,10 @@ This repository currently holds 11 demos. Create Developer Report Sean Cavanaugh
demo: developer_report
- Create HTML report using Ansible facts + 'Create HTML report using Ansible facts' + Not available - + @@ -178,7 +203,7 @@ please refer to the [contribute.md](docs/contribute.md) documentation included i # Notes -This README.md was auto-generated by Ansible user **sean** on **2020-03-12** with Ansible version **2.9.5** +This README.md was auto-generated by Ansible user **sean** on **2020-05-13** with Ansible version **2.9.7** To generate a README.md, execute the following command diff --git a/roles/generate_readme/tasks/main.yml b/roles/generate_readme/tasks/main.yml index 5241b7d..0927119 100644 --- a/roles/generate_readme/tasks/main.yml +++ b/roles/generate_readme/tasks/main.yml @@ -1,4 +1,9 @@ --- +- name: load variables from adjacent role + include_role: + name: "../roles/install_demo" + tasks_from: load_vars.yml + - name: create readme template: src: readme.j2 diff --git a/roles/install_demo/tasks/load_vars.yml b/roles/install_demo/tasks/load_vars.yml new file mode 100644 index 0000000..c6657ab --- /dev/null +++ b/roles/install_demo/tasks/load_vars.yml @@ -0,0 +1,8 @@ +--- +- name: include all demo vars from install_demo roll + include_vars: + dir: "vars" + +- name: will load vars from adjacent vars + debug: + msg: "variables loaded from install_demo role"