A lil python package to generate iam policies
Project description
IAM Builder
A python script to generate an IAM policy based on an yaml or json configuration.
To install:
# Most stable
pip install iam-builder
# OR directly from github
pip install git+git://github.com/moj-analytical-services/iam_builder.git#egg=iam_builder
To use the command line interface:
iam_builder -c examples/iam_config.yaml -o examples/iam_policy.json
-c
is the path to your iam configuration (either a yaml or json file).-o
is the path to your output iam policy (needs to be a json file).
Or to do the same thing in python:
import yaml
import json
from iam_builder.iam_builder import build_iam_policy
with open('examples/iam_config.yaml') as f:
config = yaml.load(f, Loader=yaml.FullLoader)
iam_policy = build_iam_policy(config)
with open('examples/iam_policy.json', "w+") as f:
json.dump(iam_policy, f, indent=4, separators=(',', ': '))
Both scripts will create the output iam_policy seen in the examples folder. You can also see more example configs by looking in the unit tests.
Your config file can be either a yaml or json file.
The example yaml (iam_config.yaml
) looks this:
iam_role_name: iam_role_name
athena:
write: false
glue_job: true
secrets: true
s3:
read_only:
- test_bucket_read_only/*
write_only:
- test_bucket_write_only/*
- test_bucket_read_only/write_only_folder/*
read_write:
- test_bucket_read_write/*
- test_bucket_read_only/write_folder/*
Whilst the example json (iam_config.json
) looks like this:
{
"iam_role_name": "iam_role_name",
"athena": {
"write": false
},
"glue_job": true,
"secrets": true,
"s3": {
"read_only": [
"test_bucket_read_only/*"
],
"write_only": [
"test_bucket_write_only/*",
"test_bucket_read_only/write_only_folder/*"
],
"read_write": [
"test_bucket_read_write/*",
"test_bucket_read_only/write_folder/*"
]
}
}
-
iam_role_name: The role name of your airflow job; required if you want to run glue jobs or access secrets.
-
athena: Only has one key value pair.
write
which is either true or false. Iffalse
then only read access to Athena (cannot create, delete or alter tables, databases and partitions). Iftrue
then the role will also have the ability to do stuff like CTAS queries,DROP TABLE
,CREATE DATABASE
, etc. -
glue_job: Boolean; must be set to
true
to allow role to run glue jobs. Iffalse
or absent role will not be able to run glue jobs. -
secrets: Boolean; must be set to
true
to allow role to access secrets from AWS Parameter Store. Iffalse
or absent role will not be able to access secrets. -
s3: Can have up to 3 keys:
read_only
,write_only
andread_write
. Each key describes the level of access you want your iam policy to have with each s3 path. More details below:-
read_only: A list of s3 paths that the iam_role should be able to access (read only). Each item in the list should either be a path to a object or finish with
/*
to denote that it can access everything within that directory. Note the S3 paths don't start withs3://
in the config. -
write_only: A list of s3 paths that the iam_role should be able to access (write only). Each item in the list should either be a path to a object or finish with
/*
to denote that it can access everything within that directory. Note the S3 paths don't start withs3://
in the config. -
read_write_s3_access: A list of s3 paths that the iam_role should be able to access (read and write). Each item in the list should either be a path to a object or finish with
/*
to denote that it can access everything within that directory. Note the S3 paths don't start withs3://
in the config.
-
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file iam_builder-3.1.0.tar.gz
.
File metadata
- Download URL: iam_builder-3.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.3 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6577bab6ca032ca653db172a93af4b898a5c8c6037c90719505d4ba0e85088f2 |
|
MD5 | bb54d7c931169d1ce913f74359ec9738 |
|
BLAKE2b-256 | 218e57b43871a7243aece2b7db7f618581f20aa426580240a77c00c61d52993f |
File details
Details for the file iam_builder-3.1.0-py3-none-any.whl
.
File metadata
- Download URL: iam_builder-3.1.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.3 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87fb347ab9c7f756450c45c340cb10aa66dea454eb1ea48b2785bc29cb9fc78c |
|
MD5 | 2945a58f232797db5f10ede4e716b618 |
|
BLAKE2b-256 | ccab93cf1a1495f85390a1852013ca856de0210655d783e8b9cf1b1399f51f84 |