Giter Club home page Giter Club logo

ansible-redshift's Introduction

Ansible Redshift Module (Alpha)

Module to manage Redshift:

  • Users
  • Groups
  • Privileges on databases, schemas and tables

This module is inspired by the prostresql_user core module of Ansible, but uses the SQL syntax needed by Redshift.

Dependencies

The machine targeted by Ansible needs to have installed:

  • pg8000 Python psql package, does not rely on any further external packages

Integration Testing

Function Note
Create Users / Groups
Delete Users / Groups
Set / Revoke SUPERUSER
Associate User and Group Only 1:1, see Assign an user to groups
⚠️ Schema / Table privileges No integration tests yet

See test/integration/ for details. Tested with Ansible 2.2.1 and Redshift Custer 1.0.1564.

Usage

Installation

Copy the provided Python script inside /lib into a location for Ansible libraries.

From the Ansible documentation:

This is the default location Ansible looks to find modules:

library = /usr/share/ansible

Ansible knows how to look in multiple locations if you feed it a colon separated path, and it also will look for modules in the ”./library” directory alongside a playbook.

Redshift Users / Groups

Create a normal user

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase 
    user=newRsUser
    password=passwF0rN3wRsUser
    expires='2017-01-01 00:00'
    conn_limit=10

Create a superuser

Note The permission SUPERUSER will be transformed to Redshifts equivalent CREATEUSER permission.

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase 
    user=newRsUser
    password=passwF0rN3wRsUser 
    permission_flags:
        - SUPERUSER

Revoke superuser rights

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase 
    user=newRsUser
    password=passwF0rN3wRsUser 
    permission_flags:
        - NOSUPERUSER

Update a user without the password parameter

In case you are not storing your password anywhere (e.g. in Ansible Vault), the original password might not be available anymore. To still be able to update other user attributes, use update_password=on_create.

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase 
    user=newRsUser
    password=any_value
    update_password=on_create

Create a group

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase 
    group=newRsGroup

Assign an user to groups

Note This statement will create user and group (if not already existing) and assign the user to that group.

Note If a user is part of other groups, the user will be removed from all groups which are not specified.

Note This module currently does only support a 1:1 relationship of user and group!

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    password=passwF0rN3wRsUser
    group=newRsGroup

Remove a user from all groups

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    password=passwF0rN3wRsUser
    # no group given 
    # state is implicit 'present' ('absent' would try to delete the user)

Deleting users / groups

Note A user or group can only be deleted if no permissions are assigned anymore for this resource. This is something you have to do manually at the moment!

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    password=passwF0rN3wRsUser
    group=newRsGroup
    state=absent

Privileges

For all calls to grant / revoke privileges, the state parameter has to be set to present (default). An absent state will always trigger a deletion of an user or group!

Refer also to the official AWS documentation how to set the privileges: http://docs.aws.amazon.com/redshift/latest/dg/r_GRANT.html

Grant full access to all tables of Schemas

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    password=passwF0rN3wRsUser
    privs:
        - rsSchemaA:USAGE/ALL:ALL
    state=present

Grant specific rights to different tables of Schemas

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    password=passwF0rN3wRsUser
    privs:
        - rsSchemaA:USAGE/ALL:ALL
        - rsSchemaB:USAGE/ALL:SELECT,INSERT # USAGE on schema and SELECT,INSERT on all tables of this schema
        - rsSchemaC:USAGE/TableA:SELECT,INSERT/TableB:ALL # USAGE on schema and SELECT,INSERT on specific tables only
    state=present

Grant rights for a group

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    group=rsGroup
    privs:
        - rsSchemaA:USAGE/ALL:ALL
        - rsSchemaB:USAGE/TableA:SELECT,INSERT/TableB:ALL
    state=present

Note Always use a extra statement for groups. If you set user, group and privs at the same time the privileges will be applied to the user. This setup allows you to assign the user to a group and give special user-privileges at the same time like in the following example:

# This statement creates the group with priveleges
- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    group=rsGroup
    privs:
        - rsSchemaA:USAGE/ALL:ALL
        - rsSchemaB:USAGE/TableA:SELECT,INSERT/TableB:ALL
    state=present

# This statement creates a user, assign to the group and gives this user additionally access to rsSchemaC
- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    user=newRsUser
    group=rsGroup
    privs:
        - rsSchemaC:USAGE/ALL:ALL
    state=present    

Revoke rights

Note In this current module version you have to call all schemas you gave rights like this.

- redshift_user:
    login_host=some-redshift.cluster.eu-central-1.redshift.amazonaws.com 
    login_user=rs_master 
    login_password=123456Abcdef 
    db=myDatabase
    group=rsGroup
    privs:
        - rsSchemaA #will remove all privileges from rsSchemaA and its tables
        - rsSchemaB #will remove all privileges from rsSchemaB and its tables

Set rights on database level

Not supported in this module version (yet)

Developers FAQ

Why isn't this module using psycopg2 ?

The python psycopg2 package has gcc and *-devel as a dependency on machines based on the AWS Linux image. To not have this dependency, a python library without external dependencies was used.

Redshift vs PostgreSQL

Redshift is not PostgreSQL, however we use a psql library for this module. This does the job, but at some points the library does not behave as expected, e.g. cursor.rowcount is not working.

Why is the result of a task always 'changed'?

With release 0.2, the changed flag (also in dry-run) behaves like this:

  • working if update_password=on_create is set, else always true because the module can't compare the existing and the new password
  • always true if privs are set

Contribute!

This module is in an early state. Feel free to contribute with bug reports or feature requests.

ansible-redshift's People

Contributors

philsch avatar

Watchers

James Cloos avatar Jorge Nerín avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.