Merge pull request #24 from Hestia-Homes/main

Allow db to be publically accessible
This commit is contained in:
KhalimCK 2023-07-10 13:50:05 +01:00 committed by GitHub
commit e2b96d8ace
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,4 +71,8 @@ resource "aws_db_instance" "default" {
lifecycle {
prevent_destroy = true
}
# For the moment, we make the database publically accessible so that we can connect to it from the frontend.
# We will look to change this in the future but as we are pre-MVP at the time of setting this, we don't
# have major security demand and don't want to set this up now
publicly_accessible = true
}