├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cloudwatch_event.tf ├── iam.tf ├── lambda.tf ├── main.tf ├── shuffler.py ├── shuffler.zip └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/README.md -------------------------------------------------------------------------------- /cloudwatch_event.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/cloudwatch_event.tf -------------------------------------------------------------------------------- /iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/iam.tf -------------------------------------------------------------------------------- /lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/lambda.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/main.tf -------------------------------------------------------------------------------- /shuffler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/shuffler.py -------------------------------------------------------------------------------- /shuffler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/shuffler.zip -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kgirthofer/service_shuffler/HEAD/variables.tf --------------------------------------------------------------------------------