mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-12 15:02:45 +00:00
* 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
26 lines
674 B
HCL
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
|
|
}
|