├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conf ├── .DS_Store ├── dms-task.template └── table-mappings.json ├── create_task.py └── dms-tasks.xlsx /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output/* 2 | .idea/ 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/README.md -------------------------------------------------------------------------------- /conf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/conf/.DS_Store -------------------------------------------------------------------------------- /conf/dms-task.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/conf/dms-task.template -------------------------------------------------------------------------------- /conf/table-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/conf/table-mappings.json -------------------------------------------------------------------------------- /create_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/create_task.py -------------------------------------------------------------------------------- /dms-tasks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/dms-cloudformation-templates-generator/HEAD/dms-tasks.xlsx --------------------------------------------------------------------------------