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 Respostas
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
ESPECIALISTA
Raphael
respondido há 2 anos
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
respondido há 10 meses
0
AWS
respondido há 3 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas