-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
63 lines (52 loc) · 1.42 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
variable "container_group" {
type = string
description = "The name of the container group"
}
variable "resource_group" {
type = string
description = "The name of the resource group"
}
variable "ip_address_type" {
type = string
description = " Specifies the ip address type of the container"
}
variable "dns_name_label" {
type = string
description = "The DNS label/name for the container groups IP"
}
variable "os_type" {
type = string
description = "The OS for the container group. Allowed values are Linux and Windows"
}
variable "container_name" {
type = string
description = "The name of the container"
}
variable "image_name" {
type = string
description = "The container image name"
}
variable "cpu_core_number" {
type = string
description = "The required number of CPU cores of the containers"
}
variable "memory_size" {
type = string
description = "The required memory of the containers in GB"
}
variable "port_number" {
type = string
description = "A public port for the container"
}
variable "protocol" {
type = string
description = "The network protocol associated with port"
}
variable "tags" {
type = map(any)
description = "Tags"
}
variable "role_definition_name" {
type = list(string)
description = "List of Role Definitions"
}