-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Issue #1535] Adds analytics postgres DB #1536
Conversation
@@ -0,0 +1,103 @@ | |||
# docs: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/vpc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copied from infra/api/database/main.tf
@@ -0,0 +1,23 @@ | |||
locals { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copied from infra/api/app-config/env-config/environment-variables.tf
@@ -0,0 +1,54 @@ | |||
locals { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copied from infra/api/app-config/main.tf
Summary
Fixes #1535
Time to review: 5 mins
Changes proposed
infra/analytics
infra/analytics/database/main.tf
, which creates the databaseNotes for Reviewers
This PR contains a lot of boilerplate because of needing the app-config / env-config changes. Sorry for the noise!
Caveats
The new analytics database module has the same security group rules as the old one, which will likely become confusing over time. For example, the new analytics database module has an ingress rule for the Oracle database... which it definitely does not need. We should pull those concerns apart over time.
Testing