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 réponses
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
répondu il y a 2 ans
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
répondu il y a 10 mois
0
AWS
répondu il y a 3 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions