File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tests/testdata/programs/ts/rdsmod Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ const subnet2b = new aws.ec2.Subnet("subnet2b", {
5252const testrdsmodule = new rds . Module ( "test-rds" , {
5353 identifier : `test-rds-module-${ prefix } ` ,
5454 engine : "mysql" ,
55+ engine_version : "8.4" ,
5556 instance_class : "db.t3.micro" ,
5657 allocated_storage : 20 ,
5758 db_name : "testrdsmoduledatabase" ,
@@ -62,13 +63,13 @@ const testrdsmodule = new rds.Module("test-rds", {
6263
6364
6465 // DB parameter group
65- family : "mysql8.0 " ,
66+ family : "mysql8.4 " ,
6667
6768 // DB subnet group
6869 create_db_subnet_group : true ,
6970 subnet_ids : [ subnet2a . id , subnet2b . id ] ,
7071
7172 // DB option group
72- major_engine_version : "8.0 " ,
73+ major_engine_version : "8.4 " ,
7374 vpc_security_group_ids : [ securityGroup . id ]
7475} )
You can’t perform that action at this time.
0 commit comments