├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── configuration-updates-pipeline.yaml ├── deployer.sh ├── dynamodb-sync.py ├── function.py ├── insertrecord.sh ├── lambda-cloudformation.yaml ├── requirements.txt ├── sample-mappings.json ├── sample-stack.yaml └── sample-user-policy.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | CUSTOM LOOKUP 2 | Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/README.md -------------------------------------------------------------------------------- /configuration-updates-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/configuration-updates-pipeline.yaml -------------------------------------------------------------------------------- /deployer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/deployer.sh -------------------------------------------------------------------------------- /dynamodb-sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/dynamodb-sync.py -------------------------------------------------------------------------------- /function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/function.py -------------------------------------------------------------------------------- /insertrecord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/insertrecord.sh -------------------------------------------------------------------------------- /lambda-cloudformation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/lambda-cloudformation.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | requests -------------------------------------------------------------------------------- /sample-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/sample-mappings.json -------------------------------------------------------------------------------- /sample-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/sample-stack.yaml -------------------------------------------------------------------------------- /sample-user-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/custom-lookup-lambda/HEAD/sample-user-policy.json --------------------------------------------------------------------------------