forked from dylansnyk/Snyk-Cloud-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (47 loc) · 1021 Bytes
/
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
#Company Name
#CHANGE THIS - lower case only
variable "victim_company" {
type = string
description = "For naming purposes"
default = "testpatch"
}
#CHANGE THIS
variable "owner" {
type = string
description = "For Tagging and Filtering purposes"
default = "Patch"
}
#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 "tfgoof_private" {
description = "tfgoof_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"
}