first commit

This commit is contained in:
root
2024-07-12 12:58:40 +02:00
commit 30fdad3be5
557 changed files with 11142 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
---
- name: Setup hosts
#become: true
#become_user: root
#become_method: su
hosts: localhost
roles:
- awx_import-hosts-from-list
tasks:
- name:
debug:
var: output
# - name: create list
# set_fact:
# namen: []
# - name: add hosts to list
# set_fact:
# namen: "{{ aruba_devices | split('\n') }}"
# - name:
# debug:
# var: namen
# - name: make host group from survey hosts list
# add_host:
# hostname: "{{ item }}"
# groups: aruba_hosts
# ansible_user: sys-switchupgrade
# ansible_password: "{{aruba_pass}}"
# ansible_network_os: arubanetworks.aos_switch.arubaoss
# with_items: "{{namen}}"
# - name: Add inventory
# awx.awx.inventory:
# name: "Aruba hosts (dynamic)"
# description: "Hosts imported from playbook"
# organization: "Aperam"
# state: present
# controller_host: https://awx-prd.aperam.internal
# controller_oauthtoken: "{{oauth}}"
# validate_certs: false
# - name: add hosts to inventory
# awx.awx.host:
# inventory: "Azure Arc enabled hosts (dynamic)"
# name: "{{item}}"
# state: present
# controller_host: https://awx-prd.aperam.internal
# controller_oauthtoken: "{{oauth}}"
# validate_certs: false
# enabled: true
# with_items: "{{namen}}"