3 Answers
- Newest
- Most votes
- Most comments
0
You should be able to simply take the CloudFormation route of deploying SAM:
Transform: AWS::Serverless-2016-10-31
Resources:
SomeServerlessFunc:
Type: AWS::Serverless::Function
Properties:
Handler: index.handler
Runtime: nodejs12.x
CodeUri: 's3://bucketo/source.zip'
(Same goes for AWS::Serverless::Application et al)
0
As mentioned by Raphael you can describe the SAM in CFT then update your manifest file on to where to apply the template. Depending on your manifest file version you can apply at -Root -OU or -Account levels.
answered 3 years ago
0
Some guidance on how integrate CfCT and AWS SAM is provided in this blog post https://aws.amazon.com/blogs/mt/simplify-infrastructure-deployments-using-customizations-for-aws-control-tower-and-aws-serverless-application-model/.
answered 2 years ago
Relevant content
asked 2 years ago
- AWS OFFICIALUpdated 2 years ago
