-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: invocation of getEngineVersion returns an error (#4047)
A patch was introduced via #3757 due to [a bug in pulumi-terraform-bridge](pulumi/pulumi-terraform-bridge#1809). The underlying bridge issue has now been fixed so I am removing the patch and restoring the original terraform behavior. fixes #4043
- Loading branch information
Showing
18 changed files
with
11 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
import * as aws from "@pulumi/aws"; | ||
|
||
export const vs = aws.rds.getEngineVersionOutput({engine: "postgres"}); | ||
const output = aws.rds.getEngineVersionOutput({ | ||
engine: "aurora-postgresql", | ||
version: "15.2", | ||
filters: [{ | ||
name: "engine-mode", | ||
values: ["provisioned"], | ||
}], | ||
}); | ||
|
||
export const vs = output.version; |
File renamed without changes.
81 changes: 0 additions & 81 deletions
81
patches/0046-Revert-rds-engine_version-Fix-bugs-with-default-only.patch
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.