remove interactions from terraform, fix deploy side configs

This commit is contained in:
41666 2022-01-30 17:13:57 -05:00
parent 4d231c011e
commit 1e696c79ff
6 changed files with 34 additions and 171 deletions

View file

@ -57,16 +57,10 @@ variable "api_public_uri" {
description = "API Public Base Path"
}
variable "api_path_to_worker" {
variable "path_to_worker" {
type = string
description = "Path to API worker JS, relative to this file/terraform folder."
default = "worker-dist/api.js"
}
variable "interactions_path_to_worker" {
type = string
description = "Path to interactions worker JS, relative to this file/terraform folder."
default = "worker-dist/interactions.js"
default = "worker-dist/index.mjs"
}
variable "root_users" {