Files
deflock/terraform/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

26 lines
674 B
HCL

variable "deflock_stats_bucket" {
description = "S3 bucket for the ALPR counts JSON file"
default = "cdn.deflock.me"
}
variable "deflock_cdn_bucket" {
description = "S3 bucket for the CDN"
default = "cdn.deflock.me"
}
variable "alarm_phone_number" {
description = "Phone number to receive alarm notifications"
# intentionally left blank since this file is checked into git
}
variable "directus_base_url" {
description = "Base URL for Directus CMS"
default = "https://cms.deflock.me"
}
variable "directus_api_token" {
description = "API token for Directus CMS"
sensitive = true
# intentionally left blank since this file is checked into git
}