Skip to content
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

Feature/update db size #36

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added a new input argument *granule-list-file* to input a specific list of granules to process,
and ignore start-date, end-date, cycles, etc
- List can be a list of GranuleURs or granule concept-IDs
- Update db size from t2.micro to t3.micro
### Deprecated
### Removed
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion terraform-deploy/tfvars/sit.tfvars
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
prefix = "sit-hitide-backfill-tool"
stage = "sit"
db_instance_class = "db.t2.micro"
db_instance_class = "db.t3.micro"
db_storage_size = 20


Expand Down
2 changes: 1 addition & 1 deletion terraform-deploy/variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ variable "step_retry"{

variable "db_instance_class"{
type = string
default = "db.t2.micro"
default = "db.t3.micro"
}

variable "db_storage_size"{
Expand Down