-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
51 lines (45 loc) · 1.22 KB
/
terraform.tfvars
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
#Provisioner
df_region = "us-east-1"
access_key = ""
secret_key = ""
#Network
df_cidr_block_anywhere = "0.0.0.0/0"
vpc_cidr_block = "10.0.0.0/16"
subnet_cidr_block_a = "10.0.1.0/24"
subnet_cidr_block_b = "10.0.2.0/24"
availability_zone_a = "us-east-1a"
availability_zone_b = "us-east-1b"
public_ip = "true"
#Instance
ec2_ami_id = "ami-053b0d53c279acc90"
ec2_instance_type = "t2.medium"
ec2_instance_tag_1 = {Name = "DP6_Jenkins_Controller"}
ec2_instance_tag_2 = {Name = "DP6_Jenkins_Agent"}
ud_jenkins_controller = "ud_jenkins_controller.sh"
ud_jenkins_agent_tf = "ud_jenkins_agent_tf.sh"
key_name = "dp6_kp"
#Ports
ssh_access = {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
jenkins_access = {
from_port = 8080
to_port = 8080
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
http_access = {
from_port = 8000
to_port = 8000
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
anywhere_outgoing = {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}