* Add Prettier set-up (no formatting in this commit). * Manual fixes for Prettier issues. * Run Prettier fix on non-markdown files. * Incorporate Prettier PR feedback - update commands, re-apply new yaml styles, add editor config. * Remove deprecated config item. * Add dependency on prettier-plugin-go-template. * reconcile changed file with prettier formatting. * Add git blame ignore revs file to include Prettier formatting commit. * Fix format issue with merge conflict.
21 lines
844 B
HTML
21 lines
844 B
HTML
{{ define "hero" }}
|
|
{{ partial "hero" (dict "title" "Convert CloudFormation Templates to Pulumi") }}
|
|
<section class="mx-auto px-4 py-8 lg:p-16">
|
|
<p class="text-center mt-4 mb-16 max-w-3xl text-xl text-gray-800 mx-auto">
|
|
If you already have a CloudFormation template and want to see what it would look like in your favorite language, we've got you covered. This conversion tool will do the
|
|
magic of translating your CloudFormation templates into TypeScript/JavaScript, Python, Go and C# using Pulumi.
|
|
</p>
|
|
<div class="container container-2xl mx-auto">
|
|
{{ partial "convert" (dict "from" "cf" "examples" .Params.examples) }}
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ partial "get-started.html" . }}
|
|
|
|
{{ partial "hand-raise-section" . }}
|
|
|
|
{{ end }}
|