Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Update for new AML syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Sep 30, 2023
1 parent 0237f59 commit f507fb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rds/aurora/mysql/serverless-v2/Acornfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion secrets-manager/Acornfile
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
}
Expand Down

0 comments on commit f507fb4

Please sign in to comment.