db details

This commit is contained in:
Jun-te Kim 2026-03-31 11:06:57 +00:00
parent 1f66e1b17f
commit ba331d44dc
3 changed files with 2 additions and 9 deletions

View file

@ -496,17 +496,10 @@ jobs:
ecr_repo: hubspot-etl-${{ needs.determine_stage.outputs.stage }}
dockerfile_path: etl/hubspot/scripts/scraper/handler/Dockerfile
build_context: .
build_args: |
DEV_DB_HOST=$DEV_DB_HOST
DEV_DB_PORT=$DEV_DB_PORT
DEV_DB_NAME=$DEV_DB_NAME
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.DEV_AWS_REGION }}
DEV_DB_HOST: ${{ secrets.DEV_DB_HOST }}
DEV_DB_PORT: ${{ secrets.DEV_DB_PORT }}
DEV_DB_NAME: ${{ secrets.DEV_DB_NAME }}
# ============================================================
# Deploy Hubspot ETL Lambda

View file

@ -20,7 +20,7 @@ locals {
module "hubspot_deal_etl" {
source = "../../modules/lambda_with_sqs"
name = REPLACE ME #"address2uprn" for example
name = "hubspot_deal_etl"
stage = var.stage
image_uri = local.image_uri

View file

@ -7,7 +7,7 @@ terraform {
}
backend "s3" {
bucket = REPLACE_ME
bucket = "hubspot-etl-bucket-terraform-state"
key = "terraform.tfstate"
region = "eu-west-2"
}