Skip to content

Commit ed01edc

Browse files
Update RDS e2e test (#729)
Fix for #708.
1 parent 0366832 commit ed01edc

File tree

1 file changed

+3
-2
lines changed
  • tests/testdata/programs/ts/rdsmod

1 file changed

+3
-2
lines changed

tests/testdata/programs/ts/rdsmod/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ const subnet2b = new aws.ec2.Subnet("subnet2b", {
5252
const 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
})

0 commit comments

Comments
 (0)