You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Appending aws_ to postgres variables
* Simplifying sed command for outputs (Thanks ChatGPT)
* Making GHA result more resilient
* Migrating translations
* Added function definition, updated name
* Removing RDS defaults
|`enable_postgres`| Boolean | Set to "true" to enable a postgres database. |
188
-
|`postgres_engine`| String | Which Database engine to use. Default is `aurora-postgresql`.|
189
-
|`postgres_engine_version`| String | Specify Postgres version. More information [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html). Default is `11.13`. |
190
-
|`postgres_instance_class`| String | Define the size of the instances in the DB cluster. Default is `db.t3.medium`. |
191
-
|`postgres_subnets`| String | Specify which subnets to use as a list of strings. Example: `i-1234,i-5678,i-9101`. |
192
-
|`postgres_database_name`| String | Specify a database name. Will be created if it does not exist. Default is `root`. |
193
-
|`postgres_database_port`| String | Specify a listening port for the database. Default is `5432`.|
187
+
|`aws_enable_postgres`| Boolean | Set to "true" to enable a postgres database. |
188
+
|`aws_postgres_engine`| String | Which Database engine to use. Default is `aurora-postgresql`.|
189
+
|`aws_postgres_engine_version`| String | Specify Postgres version. More information [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html). Default is `11.13`. |
190
+
|`aws_postgres_instance_class`| String | Define the size of the instances in the DB cluster. Default is `db.t3.medium`. |
191
+
|`aws_postgres_subnets`| String | Specify which subnets to use as a list of strings. Example: `i-1234,i-5678,i-9101`. |
192
+
|`aws_postgres_database_name`| String | Specify a database name. Will be created if it does not exist. Default is `root`. |
193
+
|`aws_postgres_database_port`| String | Specify a listening port for the database. Default is `5432`.|
194
194
<hr/>
195
195
<br/>
196
196
@@ -289,7 +289,7 @@ An example EFS Zone mapping;
289
289
290
290
## Adding external Postgres database (AWS RDS)
291
291
292
-
If `enable_postgres` is set to `true`, this action will deploy an RDS cluster for Postgres.
292
+
If `aws_enable_postgres` is set to `true`, this action will deploy an RDS cluster for Postgres.
293
293
294
294
### Environment variables
295
295
The following environment variables are added to the `.env` file in your app's `docker-compose.yaml` file.
@@ -353,7 +353,7 @@ Specifically, the following resources will be created:
353
353
- AWS Security Group
354
354
- AWS Security Group Rule - Allows access to the cluster's db port: `5432`
355
355
- AWS RDS Aurora Postgres
356
-
- Includes a single database (set by the input: `postgres_database_name`. defaults to `root`)
356
+
- Includes a single database (set by the input: `aws_postgres_database_name`. defaults to `root`)
357
357
358
358
Additional details about the cluster that's created:
0 commit comments