-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
58 lines (48 loc) · 1.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#Company Name
variable "victim_company" {
type = string
description = "For naming purposes"
default = "goofdemo"
}
#AWS Region
variable "aws_region" {
description = "AWS region to launch servers."
default = "us-east-1"
}
#AWS AZ
variable "primary_az" {
description = "primary AZ"
default = "us-east-1a"
}
#AWS VPC CIDR
variable "aws_vpc_cidr" {
description = "aws vpc cidr"
type = string
default = "10.0.0.0/16"
}
#AWS Subnet CIDR
variable "aws_subnet_cidr" {
description = "aws subnet cidr"
type = string
default = "10.0.0.0/24"
}
#Server Private IP
variable "goof_private" {
description = "goof_private_ip"
type = string
default = "10.0.0.10"
}
#Source IP address
variable "source_ip" {
description = "source ip"
type = string
default = "0.0.0.0/0"
}
#AMI - You must adjust this based on the region you're in
variable "ubuntu_ami" {
default = "ami-06b263d6ceff0b3dd"
}
#Key Pair Name
variable "key_name" {
description = "Desired name of AWS key pair"
}