Hello Reader,
Following up on our last post, I’m now testing the installation process for Project Adaz to see if it’s still functional. While the project is marked as "maintained," confirming it’s installable on a Windows 11 system is a different matter entirely.
Below are my updated installation instructions to ensure a smoother setup:
Updated Installation Instructions for Project Adaz
-
Clone the Repository
Assuming you already have Git installed, create a directory for the project, then run the following command:git clone https://github.com/christophetd/Adaz.git
-
Set Up the Python Environment
Navigate to the newly createdadaz
directory and execute the following commands:python3 -m venv ansible/venv ./ansible/venv/bin/activate pip install -r ./ansible/requirements.txt deactivate
-
Prepare Terraform
Download Terraform and extract it to theterraform
directory within theadaz
project folder. -
Initialize Terraform
Run the following commands:cd terraform terraform init
-
Set Up Azure CLI
Ensure the Azure CLI is installed and log in to your desired Azure account using:az login
-
Generate an SSH Key (if needed)
If you don’t already have an SSH key, generate one and store it in the.ssh
directory. On Windows 11, run the following command in the terminal:ssh-keygen
Make sure to name the key id_rsa and avoid accepting the default name.
-
Apply Terraform Configuration
Navigate to theterraform
directory and execute:terraform apply
Once these steps are complete, Terraform will build an Active Directory-enabled network with an ELK log forwarder to support your project needs.
Tomorrow we can see if it was succesful.
Post a Comment