From 53009aff9f2da880d61e14f4c2ffe89ccce80cc7 Mon Sep 17 00:00:00 2001 From: eLivaja Date: Tue, 12 Nov 2024 10:16:43 +0100 Subject: [PATCH] add engineVersion prop to DatabaseReplicaArgs --- src/components/database-replica.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/database-replica.ts b/src/components/database-replica.ts index 97922ea..6369c8c 100644 --- a/src/components/database-replica.ts +++ b/src/components/database-replica.ts @@ -50,6 +50,10 @@ export type DatabaseReplicaArgs = { * DB parameters to this instance. */ parameterGroupName?: pulumi.Input; + /** + * The DB engine version. Defaults to '15.5'. + */ + engineVersion?: pulumi.Input; /** * A map of tags to assign to the resource. */