You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cfhighlander templates should not necessarily rely on cfndsl templates to produce cloudformation templates. Raw YAML and JSON templates should be allowed as well with little help of cfn2dsl
The text was updated successfully, but these errors were encountered:
I'm using build pipeline to deploy a fairly simple template but am running into issues because I wish to include SAM templates as a nested stack as they are logically grouped and required by the application to run.
The only options available are:
Migrate from SAM completely and upload artifacts manually.
Use SAM to perform the transformation, cfn2dsl to convert to cfndsl and add as a highlander component (as you described on Gitter)
None of these options are particularly elegant. If highlander could handle the transformation automatically that would simplify the build process to simply using highlander to render then pipeline to deploy the template.
Full abstraction of templating engine needs quite a few changes in the code, but if done properly it could result in ability for highlander to produce templates for Azure and Google as well. At this point to allow providing yaml , json, and sam, it could be implemented as "preprocessor" that would essentially transform given template to cfndsl one - this way no abstraction is done, only preparation phase is introduced.
Cfhighlander templates should not necessarily rely on cfndsl templates to produce cloudformation templates. Raw YAML and JSON templates should be allowed as well with little help of cfn2dsl
The text was updated successfully, but these errors were encountered: