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

Commit

Permalink
Merge pull request #61 from ibuildthecloud/main
Browse files Browse the repository at this point in the history
Update for new AML syntax
  • Loading branch information
ibuildthecloud authored Oct 23, 2023
2 parents 8c4752e + f507fb4 commit 3242a47
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: {}
// Creates a new cluster from this snapshot or revert the existing database cluster to this snapshot. Once this has been set, should remain the same on subsequent runs. Default is "".
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 3242a47

Please sign in to comment.