Customizations for AWS Control Tower Solution - CFN SAM Support

0

Hi - We are using CfCT, which is great. We currently have cloudformation templates mapped to specific Organizational Units and it works like a charm. I now have a AWS SAM Template that I would like to deploy but I could find 0 documentation about it. At the solution repository, I can see that are features enabled to support SAM[1], but no guidance on how to do it.

Could you please share more information on how to deploy a AWS SAM Template through CfCT?

[1] - https://github.com/aws-solutions/aws-control-tower-customizations/blob/08f76abd9548cc88d091ab6a8d8f127c768c331b/CHANGELOG.md#L18

3 Answers
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)

AWS
EXPERT
Raphael
answered 2 years ago
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.

AWS
answered 9 months ago
0
AWS
answered 2 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions