Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Correct environment variable map key format for CidExec resource In the CloudFormation deployment of the CidExec resource, an error was encountered due to an invalid map key format in the environment variables. CloudFormation returned an error indicating that environment variable names must adhere to the regular expression pattern `[a-zA-Z]([a-zA-Z0-9_])+`, meaning they must start with a letter and can only contain letters, numbers, and underscores. The key `account-map-database-name` contained a hyphen, which caused the validation failure. Replaced the hyphen with an underscore to comply with the naming convention for Lambda environment variable keys. Fixes the CloudFormation error in the CidExec resource.
- Loading branch information