Skip to content

Commit

Permalink
fix: migration api token
Browse files Browse the repository at this point in the history
  • Loading branch information
cptchloroplast committed Aug 6, 2024
1 parent 508138e commit 4bd5c69
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ module "page" {
pages_hostname = var.pages_hostname

production_secrets = {
GOOGLE_CREDENTIALS = var.GOOGLE_CREDENTIALS
MAILJET_SECRET_KEY = var.MAILJET_SECRET_KEY
RSA_PRIVATE_KEY = var.RSA_PRIVATE_KEY
GOOGLE_CREDENTIALS = var.GOOGLE_CREDENTIALS
MAILJET_SECRET_KEY = var.MAILJET_SECRET_KEY
RSA_PRIVATE_KEY = var.RSA_PRIVATE_KEY
CLOUDFLARE_API_TOKEN = var.D1_CLOUDFLARE_API_TOKEN
}

production_buckets = {
Expand Down
3 changes: 3 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ variable "RSA_PRIVATE_KEY" {
sensitive = true
}
variable "WORKER_SCHEDULE" {}
variable "D1_CLOUDFLARE_API_TOKEN" {
sensitive = true
}

# GitHub Actions Secrets
variable "TF_API_TOKEN" {
Expand Down

0 comments on commit 4bd5c69

Please sign in to comment.