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 Antworten
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
EXPERTE
Raphael
beantwortet vor 2 Jahren
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
beantwortet vor 10 Monaten
0
AWS
beantwortet vor 3 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen