Skip to content

vijayanandsharma/ansible-module-dynamodb-item

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ansible-module-dynamodb-item

This module will put, update, delete an item into a DynamoDB table.

Requirements:

  • json
  • botocore
  • boto3

Variables:

    state:
        description:
          - The desiredtem into the DynamoDB table
        required: false
        default: present
        choices: ["present", "absent"]
    table:
        description:
          - The name of the DynamoDB table
        required: true
        default: none
    item:
        description:
          - The item to put, this item is mutually exclusive with key and is mandatory when the state is `present`
        required: false
        default: none
    key:
        description:
          - The key to delete, this item is mutually exclusive with key and is mandatory when the state is `absent`
        required: false
        default: none

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%