-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (52 loc) · 1.37 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
58
59
60
61
62
63
64
65
variable "subscription_id" {
default = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
variable "client_id" {
default = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
variable "client_secret" {
default = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
variable "tenant_id" {
default = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
variable "container_group_name" {
default = "foxutechgroup"
description = "The name of the container group"
}
variable "resource_group_name" {
default = "foxutech"
description = "The name of the resource group"
}
variable "location" {
default = "eastus"
description = "Azure location"
}
variable "os_type" {
default = "linux"
description = "The OS for the container group. Allowed values are Linux and Windows"
}
variable "container_name" {
default = "jenkins"
description = "The name of the container"
}
variable "image_name" {
default = "jenkins/jenkins"
description = "The container image name"
}
variable "cpu_core_number" {
default = "4"
description = "The required number of CPU cores of the containers"
}
variable "memory_size" {
default = "12"
description = "The required memory of the containers in GB"
}
variable "port_number-1" {
default = "8080"
description = "A public port for the container"
}
variable "port_number-2" {
default = "50000"
description = "A public port for the container"
}