WP Manifestindependent plugin directory
manifest / integrations / dynamodb-wordpress

Amazon DB Query plugin

Plugin for Wordpress which interacts with DynamoDB

by Collective Fruitions · github.com/coreygans/dynamodb-wordpress · website

23stars
6forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/coreygans/dynamodb-wordpress/archive/refs/heads/master.zip

This project is not maintained

Plugin for Wordpress which interacts with DynamoDB

This Plugin is a first attempt at surfacing results from DynamoDB within Wordpress leveraging the SimpleAmazon SDK. This has a lot of hard coded components to it, but is functional.

All of the configuration is in amazonDbQuery-public.php, specifically:

var $AmazonKeyPub = 'ENTER PUBLIC KEY';
var $AmazonKeySec = 'ENTER SECRET';

Also the output is hardcoded at the bottom which I've made generic. But you can set the table name here: 'TableName' => '{Insert Table Name}',

and then modify the output to meet your requirements.

There are definitely better ways to approach this, but wanted to make it available for others to leverage and benefit from.