0

is there any way to add custom plugin in aws-sam template.yaml file like Serverless.yml file for eg:

plugins:
  - plugin-1
  - plugin-2

custom:
  abc:
   accountId: "************"  
Sambhaji Sawant
  • 219
  • 2
  • 14

1 Answers1

1

No, not exactly. However, a SAM template is just a untransformed Cloudformation template. So depending on what precisely you want to achieve, creating a CFN Macro might be an option.

Milan Cermak
  • 7,476
  • 3
  • 44
  • 59