Files
feedsummarizer/variables.tf
Harry Reeder 19872d51cb Initial Commit
2025-06-20 13:53:46 +01:00

30 lines
714 B
HCL

variable "environment" {
type = string
default = "prod"
description = "Environment name to suffix to resources"
}
variable "log_level" {
type = string
default = "INFO"
description = "Lambda Log Level"
}
variable "bedrock_model" {
default = "eu.anthropic.claude-sonnet-4-20250514-v1:0"
type = string
description = "Which bedrock model ID to use"
}
variable "schedule_expression" {
type = string
description = "AWS EventBridge Scheduler Expression for when to run"
default = "cron(30 8 ? * FRI *)"
}
variable "schedule_expression_timezone" {
type = string
description = "Timezone for the schedule expression"
default = "UTC"
}