diff options
author | heqnx <root@heqnx.com> | 2025-05-26 08:54:15 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-26 08:54:15 +0300 |
commit | b702fe9f7f8bf423f753ae89b9617aab2372c05e (patch) | |
tree | 09f1237b282709ef51e741a74b21005447e061d6 /inventory.yaml.example | |
parent | 08134048cb9a85508042cabd9aa3a39849eca2be (diff) | |
download | ansible-playbooks-b702fe9f7f8bf423f753ae89b9617aab2372c05e.tar.gz ansible-playbooks-b702fe9f7f8bf423f753ae89b9617aab2372c05e.zip |
added xrdp, added example configs, removing main ones
Diffstat (limited to 'inventory.yaml.example')
-rw-r--r-- | inventory.yaml.example | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/inventory.yaml.example b/inventory.yaml.example new file mode 100644 index 0000000..9097f34 --- /dev/null +++ b/inventory.yaml.example @@ -0,0 +1,39 @@ +all: + hosts: + server01: + ansible_host: 10.11.12.13 + ansible_user: root + ansible_ssh_private_key_file: id_rsa + + # set this for the sliver-c2 role + # sliver_server: 127.0.0.1 + + # set these for the ssh-nginx-multiplex role + # public_sslh_port: 443 + # internal_nginx_port: 8080 + # internal_sshd_port: 22 + + # set this for the ssh-port-fwd-user role + # port_fwd_user: proxyuser + + #server02: + # ansible_host: 10.11.12.14 + # ansible_user: root + # ansible_ssh_private_key_file: id_rsa + + # set this for the sliver-c2 role + # sliver_server: 127.0.0.1 + + # set these for the ssh-nginx-multiplex role + # public_sslh_port: 443 + # internal_nginx_port: 8080 + # internal_sshd_port: 22 + + # set this for the ssh-port-fwd-user role + # port_fwd_user: proxyuser + + children: + servers: + hosts: + server01: {} + #server02: {} |