Last active
June 22, 2020 02:36
-
-
Save thanakijwanavit/eb96833bca8fcb9ee4f2789a61438b6a to your computer and use it in GitHub Desktop.
wallet-app
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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: > | |
| villa-wallet-sam | |
| Sample SAM Template for villa-wallet-sam | |
| # More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst | |
| Globals: | |
| Function: | |
| Timeout: 3 | |
| Parameters: | |
| BRANCH: | |
| Type: String | |
| Default: dev-blank | |
| Resources: | |
| WalletDatabase: | |
| Type: AWS::Serverless::Application | |
| Properties: | |
| Parameters: | |
| BRANCH: !Ref BRANCH | |
| Location: | |
| ApplicationId: 'arn:aws:serverlessrepo:ap-southeast-1:394922924679:applications/wallet-database-app' | |
| SemanticVersion: 0.0.4 | |
| WalletFunctions: | |
| Type: AWS::Serverless::Application | |
| Properties: | |
| Location: | |
| ApplicationId: 'arn:aws:serverlessrepo:ap-southeast-1:394922924679:applications/wallet-functions-app' | |
| SemanticVersion: 0.0.1 | |
| DigioFunctions: | |
| Type: AWS::Serverless::Application | |
| Properties: | |
| Location: | |
| ApplicationId: 'arn:aws:serverlessrepo:ap-southeast-1:394922924679:applications/digio-functions-app' | |
| SemanticVersion: 0.0.1 | |
| WalletEncryptors: | |
| Type: AWS::Serverless::Application | |
| Properties: | |
| Location: | |
| ApplicationId: 'arn:aws:serverlessrepo:ap-southeast-1:394922924679:applications/wallet-encryptors-app' | |
| SemanticVersion: 0.0.1 | |
| MembersFunctions: | |
| Type: AWS::Serverless::Application | |
| Properties: | |
| Location: | |
| ApplicationId: 'arn:aws:serverlessrepo:ap-southeast-1:394922924679:applications/members-functions-app' | |
| SemanticVersion: 0.0.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment