@@ -110,11 +110,11 @@ protected function determineDatabaseType($public)
110
110
}
111
111
112
112
return tap ($ this ->option ('serverless ' ) ? 'aurora-serverless-v2 ' : $ this ->menu ('Which type of database would you like to create? ' , [
113
- 'rds ' => 'Fixed Size MySQL Instance 8.0 (Free Tier Eligible) ' ,
114
- 'rds-mysql-5.7 ' => 'Fixed Size MySQL Instance 5.7 (Free Tier Eligible) ' ,
115
- 'aurora-serverless ' => 'Serverless v1 MySQL 5.7 Aurora Cluster ' ,
116
- 'aurora-serverless-v2 ' => 'Serverless v2 MySQL 8.0 Aurora Cluster ' ,
117
- 'rds-pgsql-13.4 ' => 'Fixed Size PostgreSQL Instance 13.4 ' ,
113
+ 'rds ' => 'Fixed Size MySQL Instance 8.0 (Free Tier Eligible) ' ,
114
+ 'rds-mysql-5.7 ' => 'Fixed Size MySQL Instance 5.7 (Free Tier Eligible) ' ,
115
+ 'aurora-serverless ' => 'Serverless v1 MySQL 5.7 Aurora Cluster ' ,
116
+ 'aurora-serverless-v2 ' => 'Serverless v2 MySQL 8.0 Aurora Cluster ' ,
117
+ 'rds-pgsql-13.11 ' => 'Fixed Size PostgreSQL Instance 13.11 ' ,
118
118
'aurora-serverless-pgsql ' => 'Serverless PostgreSQL 10.7 Aurora Cluster ' ,
119
119
'aurora-serverless-v2-pgsql ' => 'Serverless v2 PostgreSQL 14.3 Aurora Cluster ' ,
120
120
]), function ($ type ) use ($ public ) {
@@ -143,7 +143,7 @@ protected function determineInstanceClass($type)
143
143
if (
144
144
$ type == 'rds '
145
145
|| $ type == 'rds-mysql-5.7 '
146
- || $ type == 'rds-pgsql-13.4 '
146
+ || $ type == 'rds-pgsql-13.11 '
147
147
) {
148
148
return $ this ->determineRdsInstanceClass ();
149
149
}
@@ -158,7 +158,7 @@ protected function determineRdsInstanceClass()
158
158
{
159
159
$ type = $ this ->menu ('Which type of database instance would you like to create? ' , [
160
160
'general ' => 'General Purpose ' ,
161
- 'memory ' => 'Memory Optimized ' ,
161
+ 'memory ' => 'Memory Optimized ' ,
162
162
]);
163
163
164
164
if ($ type == 'general ' ) {
0 commit comments