mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-14 16:49:10 +00:00
feat(api): add /sync-from-legacy route (#192)
* feat(api): add /sync-from-legacy route * chore: remove extraneous dockerfile * chore: remove extraneous dockerfile build * chore: remove extraneous dockerfile build matrix
This commit is contained in:
parent
a983492154
commit
bfc96b0750
13 changed files with 209 additions and 6 deletions
|
@ -30,6 +30,12 @@ variable "bot_client_secret" {
|
|||
sensitive = true
|
||||
}
|
||||
|
||||
variable "bot_import_token" {
|
||||
type = string
|
||||
description = "Bot Import Token"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "bot_token" {
|
||||
type = string
|
||||
description = "Bot Client Secret"
|
||||
|
|
|
@ -44,6 +44,11 @@ resource "cloudflare_worker_script" "backend" {
|
|||
text = var.bot_token
|
||||
}
|
||||
|
||||
secret_text_binding {
|
||||
name = "BOT_IMPORT_TOKEN"
|
||||
text = var.bot_import_token
|
||||
}
|
||||
|
||||
plain_text_binding {
|
||||
name = "UI_PUBLIC_URI"
|
||||
text = var.ui_public_uri
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue