You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: variables.tf
+40
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ variable "tfc_address" {
7
7
type=string
8
8
description="The HTTPS address of the TFC or TFE instance."
9
9
default="https://app.terraform.io"
10
+
validation {
11
+
condition=startswith(var.tfc_address, "https://")
12
+
error_message="The address must start with 'https://'"
13
+
}
10
14
}
11
15
12
16
variable"tfc_org_name" {
@@ -18,18 +22,30 @@ variable "agent_cpu" {
18
22
type=number
19
23
description="The CPU units allocated to the agent container(s). See https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS_Fargate.html#fargate-tasks-size"
20
24
default=256
25
+
validation {
26
+
condition=var.agent_cpu>=256
27
+
error_message="The CPU value must be at least 256."
28
+
}
21
29
}
22
30
23
31
variable"agent_memory" {
24
32
type=number
25
33
description="The amount of memory, in MB, allocated to the agent container(s)."
26
34
default=512
35
+
validation {
36
+
condition=var.agent_memory>=512
37
+
error_message="The memory value must be at least 512."
38
+
}
27
39
}
28
40
29
41
variable"agent_log_level" {
30
42
type=string
31
43
description="The logging verbosity for the agent. Valid values are trace, debug, info (default), warn, and error."
0 commit comments