https://github.com/svenaelterman/cybersecuritysandbox
https://github.com/svenaelterman/cybersecuritysandbox
azure cybersecurity sandbox terraform
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/svenaelterman/cybersecuritysandbox
- Owner: SvenAelterman
- Created: 2025-02-12T14:26:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-15T21:08:33.000Z (11 months ago)
- Last Synced: 2025-09-01T12:16:26.356Z (10 months ago)
- Topics: azure, cybersecurity, sandbox, terraform
- Language: HCL
- Homepage:
- Size: 218 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Isolated Sandbox
This code will create an isolated environment to investigate/analyze suspected malicious code.
It will created an isolated Virtual Network, a Windows Server domain controller, a Windows 11 Client, Azure Bastion, and a storage account.
## Requirements
* It requires a Terraform management mode.
* Azure subscription to hold the isolated resources
* **Optional**, Azure subscription to hold the Terraform state
## Instructions
**Optional**, create storage account to hold terraform state. Instructions are [here](./bootstrap/README.md).
```bash
cp demo.tfvars.sample demo.tfvars
```
Edit `demo.tfvars` and insert the required values.
```bash
git clone https://github.com/SvenAelterman/CyberSecuritySandbox.git ./CyberSecuritySandbox
cd CyberSecuritySandbox
terraform init
terraform plan -out demo.tfplan -var-file=demo.tfvars
terraform apply demo.tfplan
```