Skip to content

Commit

Permalink
allow to use different db engine type (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
oavdeev authored Jul 22, 2022
1 parent 120c6c7 commit 429fa5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/datastore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To read more, see [the Metaflow docs](https://docs.metaflow.org/metaflow-on-aws/

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_db_engine"></a> [db\_engine](#input\_db\_engine) | n/a | `string` | `"postgresql"` | no |
| <a name="input_db_engine"></a> [db\_engine](#input\_db\_engine) | n/a | `string` | `"postgres"` | no |
| <a name="input_db_engine_version"></a> [db\_engine\_version](#input\_db\_engine\_version) | n/a | `string` | `"11"` | no |
| <a name="input_db_instance_type"></a> [db\_instance\_type](#input\_db\_instance\_type) | RDS instance type to launch for PostgresQL database. | `string` | `"db.t2.small"` | no |
| <a name="input_db_name"></a> [db\_name](#input\_db\_name) | Name of PostgresQL database for Metaflow service. | `string` | `"metaflow"` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/datastore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "db_instance_type" {

variable "db_engine" {
type = string
default = "postgresql"
default = "postgres"
}

variable "db_engine_version" {
Expand Down

0 comments on commit 429fa5f

Please sign in to comment.