generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
variables.container.instance.tf
60 lines (52 loc) · 1.53 KB
/
variables.container.instance.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
variable "container_instance_count" {
type = number
description = "The number of container instances to create"
default = 2
}
variable "container_instance_name_prefix" {
type = string
description = "The name prefix of the container instance"
default = null
}
variable "container_instance_container_name" {
type = string
description = "The name of the container instance"
default = null
}
variable "container_instance_environment_variables" {
type = set(object({
name = string
value = string
}))
default = []
description = "List of additional environment variables to pass to the container."
}
variable "container_instance_sensitive_environment_variables" {
type = set(object({
name = string
value = string
}))
sensitive = true
default = []
description = "List of additional sensitive environment variables to pass to the container."
}
variable "container_instance_container_cpu" {
type = number
description = "The CPU value for the container instance"
default = 2
}
variable "container_instance_container_memory" {
type = number
description = "The memory value for the container instance"
default = 4
}
variable "container_instance_container_cpu_limit" {
type = number
description = "The CPU limit value for the container instance"
default = 2
}
variable "container_instance_container_memory_limit" {
type = number
description = "The memory limit value for the container instance"
default = 4
}