Cloudformation template in SSM Document using AWS::Include

0

We are interested in storing Cloudformation templates in SSM Documents instead of S3. However, the SSM document size limit of 64kB is small and one of our templates is larger.

It would make sense to use AWS::Include and manage some parts of the large template as sub-templates, also stored as SSM Documents. According to the documentation of AWS::Include it only supports S3 URIs. It seems like an unfortunate omission given that SSM Documents have the 64kB limit.

Any plans to support ssm-doc in AWS::Include or is there some other workaround to recommend?

Thanks

已提問 7 個月前檢視次數 419 次
1 個回答
0

Hi,

You have a simpler optiony breaking your big template into a set of smaller templates (each stored as SSM document) and share the info that you need via outputs that you export into a namespace that you define. Then you read those exported values from your other templates that need those values.

Re. exports, see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html

The optimal way is to organize your new templates by "layers" of resources corresponding to the dependencies between all of them.

That is what I personally use very often in similar situations.

Best,

Didier

profile pictureAWS
專家
已回答 7 個月前
profile picture
專家
已審閱 7 個月前
  • Thanks for the suggestion!

    We already have "layered" templates using export/import as well as SSM Parameters. However, the initial template is fairly large because it is the only one that requires IAM capability during create/update (very important for the delegation of permissions).

    If we did break this template into smaller templates, we would need to perform multiple "Create Application" operations in Application Manager (or Cfn UI / CLI) for the same end result. Seems unfortunate but storing templates in SSM Documents brings important value.

    Thanks, Thomas Å.

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

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

回答問題指南