├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── 1-network.tf ├── 10-machines_config.tf ├── 2-public-ips.tf ├── 3-secgroup_storage.tf ├── 4-dc1.tf ├── 5-dc2.tf ├── 6-fileserver.tf ├── 7-client10.tf ├── 8-client7.tf ├── 9-kali.tf ├── Architecture.png ├── CreateTestUsers.zip ├── LICENSE ├── README.md ├── choco_packages.tf ├── main.tf ├── outputs.tf ├── variables.tf.template ├── versions.tf └── whatismyip.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/.gitignore -------------------------------------------------------------------------------- /1-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/1-network.tf -------------------------------------------------------------------------------- /10-machines_config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/10-machines_config.tf -------------------------------------------------------------------------------- /2-public-ips.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/2-public-ips.tf -------------------------------------------------------------------------------- /3-secgroup_storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/3-secgroup_storage.tf -------------------------------------------------------------------------------- /4-dc1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/4-dc1.tf -------------------------------------------------------------------------------- /5-dc2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/5-dc2.tf -------------------------------------------------------------------------------- /6-fileserver.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/6-fileserver.tf -------------------------------------------------------------------------------- /7-client10.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/7-client10.tf -------------------------------------------------------------------------------- /8-client7.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/8-client7.tf -------------------------------------------------------------------------------- /9-kali.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/9-kali.tf -------------------------------------------------------------------------------- /Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/Architecture.png -------------------------------------------------------------------------------- /CreateTestUsers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/CreateTestUsers.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/README.md -------------------------------------------------------------------------------- /choco_packages.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/choco_packages.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/outputs.tf -------------------------------------------------------------------------------- /variables.tf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/variables.tf.template -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /whatismyip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFreed0m/Disruption/HEAD/whatismyip.sh --------------------------------------------------------------------------------