Skip to content

Commit 6b96d7c

Browse files
authored
Merge pull request #4 from danbarr:v0.3.4
Add auto update variable and validations
2 parents bec1756 + 9777b7b commit 6b96d7c

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

main.tf

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ resource "aws_ecs_task_definition" "tfc_agent" {
7878
{
7979
name = "TFC_AGENT_LOG_LEVEL",
8080
value = var.agent_log_level
81+
},
82+
{
83+
name = "TFC_AGENT_AUTO_UPDATE",
84+
value = var.agent_auto_update
8185
}
8286
], var.extra_env_vars),
8387
secrets = [

variables.tf

+40
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ variable "tfc_address" {
77
type = string
88
description = "The HTTPS address of the TFC or TFE instance."
99
default = "https://app.terraform.io"
10+
validation {
11+
condition = startswith(var.tfc_address, "https://")
12+
error_message = "The address must start with 'https://'"
13+
}
1014
}
1115

1216
variable "tfc_org_name" {
@@ -18,18 +22,30 @@ variable "agent_cpu" {
1822
type = number
1923
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"
2024
default = 256
25+
validation {
26+
condition = var.agent_cpu >= 256
27+
error_message = "The CPU value must be at least 256."
28+
}
2129
}
2230

2331
variable "agent_memory" {
2432
type = number
2533
description = "The amount of memory, in MB, allocated to the agent container(s)."
2634
default = 512
35+
validation {
36+
condition = var.agent_memory >= 512
37+
error_message = "The memory value must be at least 512."
38+
}
2739
}
2840

2941
variable "agent_log_level" {
3042
type = string
3143
description = "The logging verbosity for the agent. Valid values are trace, debug, info (default), warn, and error."
3244
default = "info"
45+
validation {
46+
condition = contains(["trace", "debug", "info", "warn", "error"], var.agent_log_level)
47+
error_message = "Valid values: trace, debug, info, warn, error"
48+
}
3349
}
3450

3551
variable "agent_image" {
@@ -44,6 +60,16 @@ variable "agent_single_execution" {
4460
default = true
4561
}
4662

63+
variable "agent_auto_update" {
64+
type = string
65+
description = "Whether the agent should auto-update. Valid values are minor, patch, and disabled."
66+
default = "minor"
67+
validation {
68+
condition = contains(["minor", "patch", "disabled"], var.agent_auto_update)
69+
error_message = "Valid values: minor, patch, disabled"
70+
}
71+
}
72+
4773
variable "extra_env_vars" {
4874
type = list(object({
4975
name = string
@@ -67,6 +93,10 @@ variable "cloudwatch_log_group_name" {
6793
variable "ecs_cluster_arn" {
6894
type = string
6995
description = "ARN of the ECS cluster where the agent will be deployed."
96+
validation {
97+
condition = can(regex("^arn:aws[a-z-]*:ecs:", var.ecs_cluster_arn))
98+
error_message = "Must be a valid ECS cluster ARN."
99+
}
70100
}
71101

72102
variable "use_spot_instances" {
@@ -78,11 +108,21 @@ variable "use_spot_instances" {
78108
variable "vpc_id" {
79109
type = string
80110
description = "ID of the VPC where the cluster is running."
111+
validation {
112+
condition = can(regex("^vpc-[a-zA-Z0-9]+$", var.vpc_id))
113+
error_message = "Must be a valid VPC ID."
114+
}
81115
}
82116

83117
variable "subnet_ids" {
84118
type = list(string)
85119
description = "IDs of the subnet(s) where agents can be deployed (public subnets required)"
120+
validation {
121+
condition = alltrue([
122+
for i in var.subnet_ids : can(regex("^subnet-[a-zA-Z0-9]+$", i))
123+
])
124+
error_message = "Must be a list of valid subnet IDs."
125+
}
86126
}
87127

88128
variable "task_policy_arns" {

0 commit comments

Comments
 (0)