Files
deflock/terraform/modules/blog_scraper/variables.tf
Will Freeman 1c241d17c9 Add Blog (#83)
* add rss ingestor

* it works

* blog working

* fix the theme switcher

* finalize blog, re-add store

* fix terraform for blog_scraper

* update sitemap

* update readme
2025-12-14 18:52:53 -07:00

28 lines
626 B
HCL

variable "module_name" {
description = "Name of the module"
type = string
default = "blog_scraper"
}
variable "rate" {
description = "Rate expression for CloudWatch Events rule"
type = string
default = "rate(30 minutes)"
}
variable "sns_topic_arn" {
description = "SNS topic ARN for Lambda alarms"
type = string
}
variable "directus_base_url" {
description = "Base URL for Directus CMS"
type = string
default = "https://cms.deflock.me"
}
variable "directus_api_token" {
description = "API token for Directus CMS"
type = string
sensitive = true
}