From f507fb4523c909897122f646ef50a753f1505c29 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Sat, 30 Sep 2023 08:04:58 -0700 Subject: [PATCH] Update for new AML syntax --- rds/aurora/mysql/serverless-v2/Acornfile | 4 ++-- secrets-manager/Acornfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rds/aurora/mysql/serverless-v2/Acornfile b/rds/aurora/mysql/serverless-v2/Acornfile index aec6563..efb47a6 100644 --- a/rds/aurora/mysql/serverless-v2/Acornfile +++ b/rds/aurora/mysql/serverless-v2/Acornfile @@ -15,9 +15,9 @@ args: { // Deletion protection, you must set to false in order for the RDS db to be deleted. Default is false deletionProtection: false // Aurora Capacity Units minimum value(in 0.5 increments). Default is 0.5 - auroraCapacityUnitsV2Min: *0.5 | float | int + auroraCapacityUnitsV2Min: 0.5 // Aurora Capacity Units maximum value must be larger than minimum value, and 1<=n<=128 (in 0.5 increments). Default is 8.0 - auroraCapacityUnitsV2Max: *8.0 | float | int + auroraCapacityUnitsV2Max: 8.0 // RDS MySQL Database Parameters to apply to the cluster. Must be k/v string pairs(ex. max_connections: "1000"). parameters: {} // Do not take a final snapshot on delete or update and replace operations. Default is false. If skip is enabled the DB will be gone forever if deleted or replaced. diff --git a/secrets-manager/Acornfile b/secrets-manager/Acornfile index 55bc519..ec3c60d 100644 --- a/secrets-manager/Acornfile +++ b/secrets-manager/Acornfile @@ -4,7 +4,7 @@ args: { // Cron based schedule refreshSchedule: "" // Format of the secret. If json the object must be in the format of a JSON object with only string values - format: "text" | "json" + format: enum("text", "json") || default "text" // Region containing the secret region: "" }