Skip to content

Commit

Permalink
chore: fix TestRdsGetEngineVersion
Browse files Browse the repository at this point in the history
Looks like AWS got rid of `15.2` and it now starts at `15.3`. Updating
to the highest version number to give us more time.

fixes #5128
  • Loading branch information
corymhall committed Jan 23, 2025
1 parent fdf01c5 commit 0cfcdbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/examples_nodejs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ func TestRdsGetEngineVersion(t *testing.T) {
require.NoError(t, err)

engineVersion := res.Outputs["vs"]
require.Equal(t, engineVersion.Value, "15.2")
require.Equal(t, engineVersion.Value, "15.8")
}

// Checks static get function for ssm.parameter that was broken for versioned IDs.
Expand Down
4 changes: 3 additions & 1 deletion examples/rds-getengineversion/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import * as aws from "@pulumi/aws";

const output = aws.rds.getEngineVersionOutput({
engine: "aurora-postgresql",
version: "15.2",
// we need to specify the version because we want to test
// the upstream behavior when version is set
version: "15.8",
filters: [{
name: "engine-mode",
values: ["provisioned"],
Expand Down

0 comments on commit 0cfcdbc

Please sign in to comment.