Created
September 12, 2025 18:03
-
-
Save jacobsapps/2477c7c8c29955793b0193c19fb90bfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .configure_aws_template.sh | |
| rand=$(xxd -l 4 -c 4 -p < /dev/random); | |
| sed -i 's/XXXX/'${rand}'/g' template.yaml; | |
| # ----------------------------------------------------- # | |
| # template.yaml | |
| CARBN_ENV_DBSchemaLambdaFunctionTriggerXXXX: | |
| Type: Custom::CARBN_ENV_DBSchemaLambdaFunction | |
| Properties: | |
| ServiceToken: !GetAtt CARBN_ENV_DBSchemaLambdaFunction.Arn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment