From c8c9835dd4ca1ac106b7c17f15d34c54115370c4 Mon Sep 17 00:00:00 2001 From: Moonorb Date: Sat, 4 May 2024 12:18:16 +0000 Subject: [PATCH] Adding Double Quotes on enum types in dynamodb definition so they are not interpreted as boolean --- compositions/upbound-aws-provider/dynamodb/definition.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compositions/upbound-aws-provider/dynamodb/definition.yaml b/compositions/upbound-aws-provider/dynamodb/definition.yaml index 4c259620..d41ad04d 100644 --- a/compositions/upbound-aws-provider/dynamodb/definition.yaml +++ b/compositions/upbound-aws-provider/dynamodb/definition.yaml @@ -59,9 +59,9 @@ spec: type: string type: enum: - - B #binary - - N #number - - S #string + - "B" #binary + - "N" #number + - "S" #string type: string required: - name