Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dfw1n/terraform-azurerm-atomic-red-team
Module used for using Terraform to build and deploy a windows environment that creates a virtual machine and installs and executes atomic red team commands to mimic red teaming.
https://github.com/dfw1n/terraform-azurerm-atomic-red-team
azure azure-devops azurerm azurerm-terraform-provider dfw1n module template terraform terraform-module
Last synced: about 1 month ago
JSON representation
Module used for using Terraform to build and deploy a windows environment that creates a virtual machine and installs and executes atomic red team commands to mimic red teaming.
- Host: GitHub
- URL: https://github.com/dfw1n/terraform-azurerm-atomic-red-team
- Owner: DFW1N
- License: apache-2.0
- Created: 2021-11-07T06:16:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-07T22:10:25.000Z (about 3 years ago)
- Last Synced: 2023-07-19T06:37:06.237Z (over 1 year ago)
- Topics: azure, azure-devops, azurerm, azurerm-terraform-provider, dfw1n, module, template, terraform, terraform-module
- Language: HCL
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Project: Azure Terraform Atomic Red Team
Creator: Sacha Roussakis-Notter (DFW1N)
Creation Date: Sunday, November 7th 2021, 10:16 pm
ManagedBy: Sacha Roussakis-Notter (DFW1N)
---
# terraform-azure-atomic-red-team
---
Module used for using Terraform to build and deploy a windows environment that creates a virtual machine and installs and executes atomic red team commands to mimic red teaming.# Module Usage
---module "atomic" {
source = "app.terraform.io/DFW1N/atomic/azurerm"
version = "1.0.1"
}# Usage Example
---module "atomic" {
source = "app.terraform.io/DFW1N/atomic/azurerm"
version = "1.0.1"
admin_password = "yourstring"
admin_password = "yourstring"
}## Arguments
---
| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `is_custom_image` | `bool` | true | Defaults to `false`. Defines whether a custom image is to be used to deploy the VM or not. |
| `image_id` | `string` | false | If deploying from a custom VM Image. The ID of the Custom Azure VM Image the new VM should be deployed from. |
| `rg_name` | `string` | true | The name of the Resource group where the new VM will be deployed. |
| `location` | `string` | true| The Azure Region where the VM will be deployed. |
| `subnet_id` | `string` | true | The ID of the Azure Subnet where the main NIC of the VM will be created. |
| `vm_name` | `string` | true | The name to assign to the new Virtual machine. |
| `admin_username` | `string` | true | The username for the Admin User Account. |
| `admin_password` | `string` | true | The password to assign to the new Admin username. |
| `diagnostics_storage_account_name` | `string` | true | The storage account to use for VM Boot diagnostics. |