diff options
author | heqnx <root@heqnx.com> | 2025-07-12 13:15:48 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-07-12 13:15:48 +0300 |
commit | 5c07039ceb41ad6867213827440876a74f586aad (patch) | |
tree | bce1eaf4d7b8a47696272b91938def0981c93b75 /ansible/.env.proxmox.example | |
parent | 5a0f9c70eb028fc6bf04b9cdf39904fe5391612b (diff) | |
download | ansible-active-directory-range-5c07039ceb41ad6867213827440876a74f586aad.tar.gz ansible-active-directory-range-5c07039ceb41ad6867213827440876a74f586aad.zip |
working setup now with dynamic inventory
Diffstat (limited to 'ansible/.env.proxmox.example')
-rw-r--r-- | ansible/.env.proxmox.example | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/ansible/.env.proxmox.example b/ansible/.env.proxmox.example index 70c9580..7b9a1d6 100644 --- a/ansible/.env.proxmox.example +++ b/ansible/.env.proxmox.example @@ -12,13 +12,16 @@ export windows_username="packer" export windows_password="packer" export windows_svc_password="Svc1234!" +# qcow2 images +export windows_server_qcow_image="images/qemu-winserver2019.qcow2" +export linux_qcow_image="images/qemu-ubuntu-24.04-server.qcow2" + # proxmox vm and template details export windows_server_template_id="200" export windows_server_template_name="winserver2019-tmpl" -#export linux_server_template_id="201" -#export linux_server_template_name="base-img-ubuntu-24.04-server" -#export kali_template_id="202" -#export kali_template_name="base-img-kali-top10-xfce" + +export linux_server_template_id="201" +export linux_server_template_name="ubuntu2404-tmpl" # domain details export main_domain_name="contoso.com" @@ -27,6 +30,10 @@ export main_dc01_vmid="5000" export main_dc01_hostname="dc01" export main_dc01_ip_address="192.168.1.50" +export main_linux_srv01_vmid="5001" +export main_linux_srv01_hostname="srv01" +export main_linux_srv01_ip_address="192.168.1.51" + export network_gateway="192.168.1.1" #export mssql01_hostname="mssql01" |