├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── buildDocs.js ├── docs ├── features.md ├── getting-started.md ├── handlebars-helpers.md ├── images │ ├── condensation_logo.png │ └── condensation_logo.svg ├── intrinsic-functions.md ├── particle-helpers.md ├── tasks.md └── template-helpers.md ├── index.js ├── jsdoc2md └── templates │ └── sig-name.hbs ├── lib ├── condensation │ ├── index.js │ ├── loaders │ │ ├── all-helpers.js │ │ ├── front-loader.js │ │ ├── particle-loader.js │ │ └── template-helper-loader.js │ ├── tasks │ │ ├── build.js │ │ ├── index.js │ │ └── s3 │ │ │ ├── deleteObjects.js │ │ │ ├── ensureBucket.js │ │ │ ├── index.js │ │ │ └── writeObjects.js │ ├── template-helpers │ │ ├── arrayify.js │ │ ├── assetPath.js │ │ ├── assetS3Url.js │ │ ├── cValue.js │ │ ├── functions │ │ │ ├── fnAnd.js │ │ │ ├── fnBase64.js │ │ │ ├── fnEquals.js │ │ │ ├── fnFindInMap.js │ │ │ ├── fnGetAZs.js │ │ │ ├── fnGetArtifactAtt.js │ │ │ ├── fnGetAtt.js │ │ │ ├── fnGetParam.js │ │ │ ├── fnIf.js │ │ │ ├── fnImportValue.js │ │ │ ├── fnJoin.js │ │ │ ├── fnNot.js │ │ │ ├── fnOr.js │ │ │ ├── fnSelect.js │ │ │ ├── fnSplit.js │ │ │ ├── fnSub.js │ │ │ ├── index.js │ │ │ └── ref.js │ │ ├── helper.js │ │ ├── index.js │ │ ├── layout.js │ │ ├── objectify.js │ │ ├── partial.js │ │ ├── requireAssets.js │ │ ├── scopeId.js │ │ ├── sections │ │ │ ├── _buildHelper.js │ │ │ ├── condition.js │ │ │ ├── index.js │ │ │ ├── mapping.js │ │ │ ├── metadata.js │ │ │ ├── output.js │ │ │ ├── parameter.js │ │ │ └── resource.js │ │ ├── set.js │ │ └── templateS3Url.js │ └── util.js ├── gulp-plugins │ └── gulp-cf-validate.js └── handlebars-helpers │ ├── concat.js │ ├── index.js │ └── stringify.js ├── package.json └── test ├── fixtures ├── projects │ ├── invalid │ │ ├── package.json │ │ └── particles │ │ │ └── cftemplates │ │ │ └── invalid.template.hbs │ ├── particle-builds │ │ ├── package.json │ │ └── particles │ │ │ ├── mappings │ │ │ ├── ami.hbs │ │ │ └── ami_full_object.hbs │ │ │ ├── parameters │ │ │ ├── extend_malformed.hbs │ │ │ ├── full_object.json.hbs │ │ │ ├── generic.hbs │ │ │ └── malformed.hbs │ │ │ ├── resources │ │ │ └── generic.hbs │ │ │ └── sets │ │ │ ├── set1.hbs │ │ │ ├── set2.hbs │ │ │ └── set3.hbs │ ├── particles-common-core │ │ ├── package.json │ │ └── particles │ │ │ ├── conditions │ │ │ ├── is_false.hbs │ │ │ └── is_true.hbs │ │ │ ├── parameters │ │ │ ├── cidr_range.hbs │ │ │ └── true_false.hbs │ │ │ ├── partials │ │ │ └── parameter_base.hbs │ │ │ └── sets │ │ │ └── true_false.hbs │ ├── particles-vpc │ │ ├── package.json │ │ └── particles │ │ │ ├── cftemplates │ │ │ ├── subnet.template.json.hbs │ │ │ └── vpc.template.json.hbs │ │ │ ├── parameters │ │ │ └── vpc_cidr.hbs │ │ │ └── sets │ │ │ └── true_false_set.hbs │ ├── projectA │ │ ├── package.json │ │ ├── particles │ │ │ ├── cftemplates │ │ │ │ ├── infra.template.json.hbs │ │ │ │ ├── subnet.template.json.hbs │ │ │ │ └── vpc.template.json.hbs │ │ │ ├── helpers │ │ │ │ └── test-helper.js │ │ │ └── partials │ │ │ │ ├── ami-map │ │ │ │ ├── parameter-name-tag │ │ │ │ └── text-test │ │ └── projectA │ ├── projectB │ │ ├── package.json │ │ └── particles │ │ │ ├── assets │ │ │ ├── bootstrap.sh │ │ │ └── download.sh.hbs │ │ │ ├── cftemplates │ │ │ └── instance.template.json.hbs │ │ │ ├── helpers │ │ │ └── hello-b.js │ │ │ └── partials │ │ │ └── ami_map.partial │ ├── projectC │ │ ├── package.json │ │ └── particles │ │ │ ├── cftemplates │ │ │ └── proj.template.json.hbs │ │ │ ├── front_loaders │ │ │ └── testLoader.js │ │ │ └── resources │ │ │ ├── lambda_function.hbs │ │ │ └── lambda_function │ │ │ └── execution_role.hbs │ └── sam │ │ ├── package.json │ │ └── particles │ │ └── cftemplates │ │ └── sam.template.json.hbs └── projects_output │ ├── particle-builds │ └── sets_output1.json │ ├── particles-vpc │ └── 0 │ │ └── particles │ │ └── cftemplates │ │ ├── subnet.template.json │ │ └── vpc.template.json │ ├── projectA │ └── 0 │ │ └── particles │ │ └── cftemplates │ │ ├── infra.template.json │ │ ├── subnet.template.json │ │ └── vpc.template.json │ ├── projectB-config2 │ └── 0 │ │ └── testing-path │ │ ├── node_modules │ │ └── projectA │ │ │ └── particles │ │ │ └── cftemplates │ │ │ ├── vpc.template │ │ │ └── vpc.template.json │ │ └── particles │ │ ├── assets │ │ ├── bootstrap.sh │ │ └── download.sh │ │ └── cftemplates │ │ └── instance.template.json │ ├── projectB │ └── 0 │ │ ├── node_modules │ │ └── projectA │ │ │ └── particles │ │ │ └── cftemplates │ │ │ └── vpc.template.json │ │ └── particles │ │ ├── assets │ │ ├── bootstrap.sh │ │ └── download.sh │ │ └── cftemplates │ │ └── instance.template.json │ └── projectC │ └── 0 │ ├── node_modules │ ├── projectA │ │ └── particles │ │ │ └── cftemplates │ │ │ └── vpc.template.json │ └── projectB │ │ ├── node_modules │ │ └── projectA │ │ │ └── particles │ │ │ └── cftemplates │ │ │ └── vpc.template.json │ │ └── particles │ │ ├── assets │ │ ├── bootstrap.sh │ │ └── download.sh │ │ └── cftemplates │ │ └── instance.template.json │ └── particles │ └── cftemplates │ └── proj.template ├── integration ├── invalid.test.js ├── particles-vpc.test.js ├── project-shared.js ├── projectA.test.js ├── projectB-config2.test.js ├── projectB.test.js ├── projectC.test.js └── sam.test.js └── unit ├── handlebars-helpers ├── concat.test.js └── stringify.test.js ├── load.test.js ├── loaders ├── front-loader.test.js └── particle-loader.test.js └── template-helpers ├── arrayify.test.js ├── assetPath.test.js ├── assetS3Url.test.js ├── cValue.test.js ├── functions ├── fnAnd.test.js ├── fnBase64.test.js ├── fnEquals.test.js ├── fnFindInMap.test.js ├── fnGetAZs.test.js ├── fnGetArtifactAtt.test.js ├── fnGetAtt.test.js ├── fnGetParam.test.js ├── fnIf.test.js ├── fnImportValue.test.js ├── fnJoin.test.js ├── fnNot.test.js ├── fnOr.test.js ├── fnSelect.test.js ├── fnSplit.test.js ├── fnSub.test.js └── ref.test.js ├── objectify.test.js ├── scopeId.test.js ├── sections ├── mapping.test.js ├── parameters.test.js └── sets.test.js └── templateS3Url.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/README.md -------------------------------------------------------------------------------- /bin/buildDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/bin/buildDocs.js -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/handlebars-helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/handlebars-helpers.md -------------------------------------------------------------------------------- /docs/images/condensation_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/images/condensation_logo.png -------------------------------------------------------------------------------- /docs/images/condensation_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/images/condensation_logo.svg -------------------------------------------------------------------------------- /docs/intrinsic-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/intrinsic-functions.md -------------------------------------------------------------------------------- /docs/particle-helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/particle-helpers.md -------------------------------------------------------------------------------- /docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/tasks.md -------------------------------------------------------------------------------- /docs/template-helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/docs/template-helpers.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/index.js -------------------------------------------------------------------------------- /jsdoc2md/templates/sig-name.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/jsdoc2md/templates/sig-name.hbs -------------------------------------------------------------------------------- /lib/condensation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/index.js -------------------------------------------------------------------------------- /lib/condensation/loaders/all-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/loaders/all-helpers.js -------------------------------------------------------------------------------- /lib/condensation/loaders/front-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/loaders/front-loader.js -------------------------------------------------------------------------------- /lib/condensation/loaders/particle-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/loaders/particle-loader.js -------------------------------------------------------------------------------- /lib/condensation/loaders/template-helper-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/loaders/template-helper-loader.js -------------------------------------------------------------------------------- /lib/condensation/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/build.js -------------------------------------------------------------------------------- /lib/condensation/tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/index.js -------------------------------------------------------------------------------- /lib/condensation/tasks/s3/deleteObjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/s3/deleteObjects.js -------------------------------------------------------------------------------- /lib/condensation/tasks/s3/ensureBucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/s3/ensureBucket.js -------------------------------------------------------------------------------- /lib/condensation/tasks/s3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/s3/index.js -------------------------------------------------------------------------------- /lib/condensation/tasks/s3/writeObjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/tasks/s3/writeObjects.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/arrayify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/arrayify.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/assetPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/assetPath.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/assetS3Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/assetS3Url.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/cValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/cValue.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnAnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnAnd.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnBase64.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnEquals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnEquals.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnFindInMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnFindInMap.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnGetAZs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnGetAZs.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnGetArtifactAtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnGetArtifactAtt.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnGetAtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnGetAtt.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnGetParam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnGetParam.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnIf.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnImportValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnImportValue.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnJoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnJoin.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnNot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnNot.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnOr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnOr.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnSelect.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnSplit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnSplit.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/fnSub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/fnSub.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/index.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/functions/ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/functions/ref.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/helper.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/index.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/layout.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/objectify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/objectify.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/partial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/partial.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/requireAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/requireAssets.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/scopeId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/scopeId.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/_buildHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/_buildHelper.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/condition.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/index.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/mapping.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/metadata.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/output.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/parameter.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/sections/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/sections/resource.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/set.js -------------------------------------------------------------------------------- /lib/condensation/template-helpers/templateS3Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/template-helpers/templateS3Url.js -------------------------------------------------------------------------------- /lib/condensation/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/condensation/util.js -------------------------------------------------------------------------------- /lib/gulp-plugins/gulp-cf-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/gulp-plugins/gulp-cf-validate.js -------------------------------------------------------------------------------- /lib/handlebars-helpers/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/handlebars-helpers/concat.js -------------------------------------------------------------------------------- /lib/handlebars-helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/handlebars-helpers/index.js -------------------------------------------------------------------------------- /lib/handlebars-helpers/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/lib/handlebars-helpers/stringify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/invalid/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/invalid/particles/cftemplates/invalid.template.hbs: -------------------------------------------------------------------------------- 1 | { 2 | {{#if neverTrue}}{{else}}/{{/if}} 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/mappings/ami.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/mappings/ami.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/mappings/ami_full_object.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/mappings/ami_full_object.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/parameters/extend_malformed.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/parameters/extend_malformed.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/parameters/full_object.json.hbs: -------------------------------------------------------------------------------- 1 | { 2 | "Type": "String" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/parameters/generic.hbs: -------------------------------------------------------------------------------- 1 | "Type": "{{type}}" 2 | -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/parameters/malformed.hbs: -------------------------------------------------------------------------------- 1 | { { 2 | } 3 | -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/resources/generic.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/resources/generic.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/sets/set1.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/sets/set1.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/sets/set2.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/sets/set2.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particle-builds/particles/sets/set3.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particle-builds/particles/sets/set3.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/conditions/is_false.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/conditions/is_false.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/conditions/is_true.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/conditions/is_true.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/parameters/cidr_range.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/parameters/cidr_range.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/parameters/true_false.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/parameters/true_false.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/partials/parameter_base.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/partials/parameter_base.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-common-core/particles/sets/true_false.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-common-core/particles/sets/true_false.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-vpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-vpc/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/particles-vpc/particles/cftemplates/subnet.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-vpc/particles/cftemplates/subnet.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-vpc/particles/cftemplates/vpc.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-vpc/particles/cftemplates/vpc.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-vpc/particles/parameters/vpc_cidr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/particles-vpc/particles/parameters/vpc_cidr.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/particles-vpc/particles/sets/true_false_set.hbs: -------------------------------------------------------------------------------- 1 | {{set 'module:particles-common-core' 'true_false'}} 2 | -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/cftemplates/infra.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/cftemplates/infra.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/cftemplates/subnet.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/cftemplates/subnet.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/cftemplates/vpc.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/cftemplates/vpc.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/helpers/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/helpers/test-helper.js -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/partials/ami-map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/partials/ami-map -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/partials/parameter-name-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/partials/parameter-name-tag -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/particles/partials/text-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectA/particles/partials/text-test -------------------------------------------------------------------------------- /test/fixtures/projects/projectA/projectA: -------------------------------------------------------------------------------- 1 | projectA -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectB/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/particles/assets/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "I bootstrap!" 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/particles/assets/download.sh.hbs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget {{{assetS3Url 'bootstrap.sh'}}} 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/particles/cftemplates/instance.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectB/particles/cftemplates/instance.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/particles/helpers/hello-b.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | return "Hello from project B"; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/projectB/particles/partials/ami_map.partial: -------------------------------------------------------------------------------- 1 | {{partial 'module:projectA' 'ami-map'}} 2 | -------------------------------------------------------------------------------- /test/fixtures/projects/projectC/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectC/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/projectC/particles/cftemplates/proj.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectC/particles/cftemplates/proj.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectC/particles/front_loaders/testLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectC/particles/front_loaders/testLoader.js -------------------------------------------------------------------------------- /test/fixtures/projects/projectC/particles/resources/lambda_function.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/projectC/particles/resources/lambda_function.hbs -------------------------------------------------------------------------------- /test/fixtures/projects/projectC/particles/resources/lambda_function/execution_role.hbs: -------------------------------------------------------------------------------- 1 | "Type": "AWS::IAM::Role" 2 | "Properties": { 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/projects/sam/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/sam/package.json -------------------------------------------------------------------------------- /test/fixtures/projects/sam/particles/cftemplates/sam.template.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects/sam/particles/cftemplates/sam.template.json.hbs -------------------------------------------------------------------------------- /test/fixtures/projects_output/particle-builds/sets_output1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/particle-builds/sets_output1.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/particles-vpc/0/particles/cftemplates/subnet.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/particles-vpc/0/particles/cftemplates/subnet.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/particles-vpc/0/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/particles-vpc/0/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectA/0/particles/cftemplates/infra.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectA/0/particles/cftemplates/infra.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectA/0/particles/cftemplates/subnet.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectA/0/particles/cftemplates/subnet.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectA/0/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectA/0/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB-config2/0/testing-path/node_modules/projectA/particles/cftemplates/vpc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB-config2/0/testing-path/node_modules/projectA/particles/cftemplates/vpc.template -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB-config2/0/testing-path/node_modules/projectA/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB-config2/0/testing-path/node_modules/projectA/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB-config2/0/testing-path/particles/assets/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "I bootstrap!" 4 | -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB-config2/0/testing-path/particles/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB-config2/0/testing-path/particles/assets/download.sh -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB-config2/0/testing-path/particles/cftemplates/instance.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB-config2/0/testing-path/particles/cftemplates/instance.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB/0/node_modules/projectA/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB/0/node_modules/projectA/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB/0/particles/assets/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "I bootstrap!" 4 | -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB/0/particles/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB/0/particles/assets/download.sh -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectB/0/particles/cftemplates/instance.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectB/0/particles/cftemplates/instance.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/node_modules/projectA/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectC/0/node_modules/projectA/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/node_modules/projectB/node_modules/projectA/particles/cftemplates/vpc.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectC/0/node_modules/projectB/node_modules/projectA/particles/cftemplates/vpc.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/node_modules/projectB/particles/assets/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "I bootstrap!" 4 | -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/node_modules/projectB/particles/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectC/0/node_modules/projectB/particles/assets/download.sh -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/node_modules/projectB/particles/cftemplates/instance.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectC/0/node_modules/projectB/particles/cftemplates/instance.template.json -------------------------------------------------------------------------------- /test/fixtures/projects_output/projectC/0/particles/cftemplates/proj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/fixtures/projects_output/projectC/0/particles/cftemplates/proj.template -------------------------------------------------------------------------------- /test/integration/invalid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/invalid.test.js -------------------------------------------------------------------------------- /test/integration/particles-vpc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/particles-vpc.test.js -------------------------------------------------------------------------------- /test/integration/project-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/project-shared.js -------------------------------------------------------------------------------- /test/integration/projectA.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/projectA.test.js -------------------------------------------------------------------------------- /test/integration/projectB-config2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/projectB-config2.test.js -------------------------------------------------------------------------------- /test/integration/projectB.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/projectB.test.js -------------------------------------------------------------------------------- /test/integration/projectC.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/projectC.test.js -------------------------------------------------------------------------------- /test/integration/sam.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/integration/sam.test.js -------------------------------------------------------------------------------- /test/unit/handlebars-helpers/concat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/handlebars-helpers/concat.test.js -------------------------------------------------------------------------------- /test/unit/handlebars-helpers/stringify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/handlebars-helpers/stringify.test.js -------------------------------------------------------------------------------- /test/unit/load.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/load.test.js -------------------------------------------------------------------------------- /test/unit/loaders/front-loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/loaders/front-loader.test.js -------------------------------------------------------------------------------- /test/unit/loaders/particle-loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/loaders/particle-loader.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/arrayify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/arrayify.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/assetPath.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/assetPath.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/assetS3Url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/assetS3Url.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/cValue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/cValue.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnAnd.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnAnd.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnBase64.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnBase64.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnEquals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnEquals.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnFindInMap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnFindInMap.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnGetAZs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnGetAZs.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnGetArtifactAtt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnGetArtifactAtt.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnGetAtt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnGetAtt.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnGetParam.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnGetParam.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnIf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnIf.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnImportValue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnImportValue.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnJoin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnJoin.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnNot.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnNot.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnOr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnOr.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnSelect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnSelect.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnSplit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnSplit.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/fnSub.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/fnSub.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/functions/ref.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/functions/ref.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/objectify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/objectify.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/scopeId.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/scopeId.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/sections/mapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/sections/mapping.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/sections/parameters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/sections/parameters.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/sections/sets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/sections/sets.test.js -------------------------------------------------------------------------------- /test/unit/template-helpers/templateS3Url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungardAS/condensation/HEAD/test/unit/template-helpers/templateS3Url.test.js --------------------------------------------------------------------------------