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 個答案
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
專家
Raphael
已回答 2 年前
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
已回答 10 個月前
0
AWS
已回答 3 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南