Skip to main content

A decorator to allow running a function against all AWS accounts in an organization

Project description

Botocove

Run a function against a selection of AWS accounts, or all AWS accounts in an organization, concurrently. By default, opinionated to work with the standard AWS Organization master/member configuration from an organization master account.

  • Fast
  • Easy
  • Dolphin Themed 🐬

A simple decorator for functions to remove time and complexity burden. Uses async.io and ThreadPoolExecutor to run boto3 sessions against one to all of your AWS accounts at (nearly!) the same speed as running against one.

Wrap a function in @cove and inject an assumed role session into every account required, gathering all results into a dictionary.

Warning: this tool gives you the potential to make dangerous changes at scale. Test carefully and make idempotent changes! Please read available arguments to understand safe experimentation with this package.

Requirements

An IAM user with sts:assumerole privilege, and accounts that have a trust relationship to the IAM user's account.

By default, the IAM user is expected to be in an AWS Organization Master account

Default (customisable if unsuitable) expectations are:

In the organization master account:

  • IAM permissions sts:assumerole, sts:get-caller-identity and organizations:list-accounts

In the organization accounts:

  • An AccountOrganizationAccessRole role

See the Arguments section for how to change these defaults to work with any accounts.

Quickstart

A function written to interact with a boto3 session can now be called with a session from every account required in your AWS organization, assuming a role in each account.

For example:

A standard approach: this function takes a boto3 session and gets all IAM users from a single AWS account

import boto3


def get_iam_users(session):
    iam = session.client("iam", region_name="eu-west-1")
    all_users = iam.get_paginator("list_users").paginate().build_full_result()
    return all_users

def main():
    session = boto3.session.Session(profile_name="my_dev_account")
    users = get_iam_users(session)
    print(users) # A single account's IAM users

Now with @cove: a session for every account in the organization is injected by the decorator. A safe example to run as a test!

import boto3
from botocove import cove

@cove()
def get_iam_users(session):
    iam = session.client("iam", region_name="eu-west-1")
    all_users = iam.get_paginator("list_users").paginate().build_full_result()
    return all_users

def main():
    # No session passed as the decorator injects it
    all_results = get_iam_users() 
    # Now returns a Dict with keys Results, Exceptions and FailedAssumeRole
    
    # A list of dictionaries for each account, with account details included.
    # Each account's get_iam_users return is in a "Result" key.
    print(all_results["Results"]) 
    
    # A list of dictionaries for each account that raised an exception
    print(all_results["Exceptions"])

    # A list of dictionaries for each account that could not be assumed into
    print(all_results["FailedAssumeRole"])

Arguments

Cove

@cove(): Uses boto3 credential chain to get every AWS account within the organization, assume the OrganizationAccountAccessRole in it and run the wrapped function with that role.

Equivalent to: @cove(target_ids=None, ignore_ids=None, rolename=None, assuming_session=None, raise_exception=False, org_master=True)

target_ids: Optional[List[str]] A list of AWS accounts as strings to attempt to assume role in to. When unset, default attempts to use every available account ID in an AWS organization.

ignore_ids: Optional[List[str]] A list of AWS account ID's that will not attempt assumption in to. Allows IDs to be ignored.

rolename: Optional[str] An IAM role name that will be attempted to assume in all target accounts. Defaults to the AWS Organization default, OrganizationAccountAccessRole.

assuming_session: Optional[Session] A Boto3 Session object that will be used to call sts:assumerole. If not provided, defaults to standard boto3 credential chain.

raise_exception: bool Defaults to False. Default behaviour is that exceptions are not raised from decorated function. This is due to cove running asynchronously and preferring to resolve all tasks and report their results instead of exiting early.

raise_exception=True will allow a full stack trace to escape on the first exception seen; but will not gracefully or consistently interrupt running tasks. It is vital to run interruptible, idempotent code with this argument as True.

org_master: bool Defaults to True. When True, will leverage the Boto3 Organizations API to list all accounts in the organization, and enrich each CoveSession with information available (Id, Arn, Name).

org_master=False means target_ids must be provided (as no list of accounts can be created for you), as well as likely rolename. Only Id will be available to CoveSession.

CoveSession

Cove supplies an enriched Boto3 session to each function called. Account details are available with the session_information attribute.

Otherwise, it functions exactly as calling boto3 would.

@cove()
def do_nothing(session: CoveSession):
    print(session.session_information) # Outputs a dict of known information
    # This function runs no boto3-specific API, but does test that a role
    # can be assumed

Return values

Wrapped functions return a dictionary. Each value contains List[Dict[str, Any]]:

{
    "Results": results: 
    "Exceptions": exceptions,
    "FailedAssumeRole": invalid_sessions,
}

An example of cove_output["Results"]:

[ # A list of dictionaries per account called
    {
    'Id': '123456789010',
    'Email': 'email@address.com',
    'Name': 'account-name',
    'Status': 'ACTIVE',
    'AssumeRoleSuccess': True,
    'Result': wrapped_function_return_value # Result of wrapped func
    } 
] 

botocove?

It turns out that the Amazon's Boto dolphins are solitary or small-group animals, unlike the large pods of dolphins in the oceans. This killed my "large group of boto" idea, so the next best idea was where might they all shelter together... a cove!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

botocove-1.1.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

botocove-1.1.0-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file botocove-1.1.0.tar.gz.

File metadata

  • Download URL: botocove-1.1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure

File hashes

Hashes for botocove-1.1.0.tar.gz
Algorithm Hash digest
SHA256 43461ef90b2be4fe3183d1bd447c5fa816011cb9092223426d0fd04e1ea5525c
MD5 1a2d875d3fe00d0929dd978aa429f129
BLAKE2b-256 7774a9d9edfab5225b9e84ed8183cfbf7985c9fa9d500bf89637f2ec2e9670c0

See more details on using hashes here.

File details

Details for the file botocove-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: botocove-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure

File hashes

Hashes for botocove-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 69777208dca5a3e86501e5390534cb8aab58924f1f710e31c4f1ac82637f10aa
MD5 ad4cfc7e87d75e12ad14eb633f0afcfc
BLAKE2b-256 7ac599e0438f278930fb2f721cf759626afa8229ad424eab915ecc74567d3776

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page