-
Notifications
You must be signed in to change notification settings - Fork 23
/
variables.tf
42 lines (33 loc) · 1.01 KB
/
variables.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
40
41
42
variable "region" {
description = "The AWS region."
}
variable "profile" {
description = "The AWS credentials profile to use."
default = "default"
}
variable "availability_zone" {
description = "The AWS availability zone to use."
}
variable "instance_type" {
description = "The AWS instance type to use."
}
variable "key_name" {
description = "The AWS SSH keypair to use."
}
variable "server_name" {
description = "The name of the server (will be used in the Name tag on AWS)."
}
variable "zone" {
description = "Primary DNS zone."
}
variable "burp_zone" {
description = "Collaborator zone to create collaborator server in."
}
variable "permitted_ssh_cidr_block" {
description = "IP addresses from which SSH connections will be allowed. Default is all, which will be noisy."
default = "0.0.0.0/0"
}
variable "domain_registered_with_other" {
description = "Is the domain is registered with someone other than AWS set this to true as we will need to create the hosted zone"
default = "false"
}