-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.tf
39 lines (35 loc) · 1.09 KB
/
config.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# AWS General Settings
variable "region" {
description = "The AWS region to deploy ressources to"
default = "ap-southeast-1"
}
variable "availability_zone" {
description = "The AWS availability zone to deploy ressources to"
default = "ap-southeast-1a"
}
# EC2 Settings
variable "my_ip_address" {
description = "The name of the resource group in which the resources will be created"
}
variable "public_key_loc" {
description = "Location of the public key associated with the public key."
}
variable "private_key_loc" {
description = "Location of the private key associated with the public key."
}
variable "ami" {
description = "AMI to use for the EC2 creation. Check https://cloud-images.ubuntu.com/locator/ec2/ for reference."
default = "ami-00c76c78e78a3dcd4"
}
# Red Team Infra Settings
variable "cs_password" {
description = "Password to start the CS server."
}
variable "nb_redirectors" {
description = "Number of redirectors in infrastructure."
default = 1
}
variable "nb_c2servers" {
description = "Number of c2 servers in infrastructure."
default = 1
}