Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
concurrency:
group: deploy-dev-${{ github.event.number || 'latest' }}
cancel-in-progress: false
needs: [resume-resources-dev, plan-stack]
needs: [resume-resources-dev]
uses: ./.github/workflows/.deploy_stack.yml
with:
environment_name: prod # ::change it to:: dev , template repo only has PROD
Expand Down
2 changes: 2 additions & 0 deletions infrastructure/database/aurora-v2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ module "aurora_postgresql_v2" {

vpc_id = module.networking.vpc.id
vpc_security_group_ids = [module.networking.security_groups.data.id]
db_subnet_group_name = aws_db_subnet_group.db_subnet_group.name

master_username = var.db_master_username
master_password = random_password.db_master_password.result
manage_master_user_password = false
Expand Down
Loading