-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
54 lines (43 loc) · 1.07 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
variable "aws_profile" {
description = "AWS profile configured on system"
}
variable "region" {
description = "AWS Region"
}
variable "vpc_cidr_block" {
description = "CIDR block of the VPC"
}
variable "public_subnets" {
description = "The number of public subnets"
}
variable "private_subnets" {
description = "The number of private subnets"
}
variable "public_subnet_blocks" {
description = "List of CIDR blocks for public subnets"
type = list
}
variable "private_subnet_blocks" {
description = "List of CIDR blocks for private subnets"
type = list
}
variable "jenkins_controller_cpu" {
description = "The CPU for the Jenkins controller"
type = number
}
variable "jenkins_controller_mem" {
description = "The memory for the Jenkins controller"
type = number
}
variable "jenkins_controller_port" {
description = "The port of the Jenkins controller"
type = number
}
variable "jenkins_agent_port" {
description = "The port of the Jenkins agents"
type = number
}
variable "prefix" {
description = "AWS Resource Prefix"
type = string
}