https://github.com/davidmoremad/awspice
Awspice is a wrapper tool of Boto3 library to list inventory and manage your AWS infrastructure The objective of the wrapper is to abstract the use of AWS, being able to dig through all the data of our account
https://github.com/davidmoremad/awspice
aws boto3 cloud region security wrapper
Last synced: 6 months ago
JSON representation
Awspice is a wrapper tool of Boto3 library to list inventory and manage your AWS infrastructure The objective of the wrapper is to abstract the use of AWS, being able to dig through all the data of our account
- Host: GitHub
- URL: https://github.com/davidmoremad/awspice
- Owner: davidmoremad
- License: apache-2.0
- Created: 2017-10-24T09:33:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-02T20:35:28.000Z (over 6 years ago)
- Last Synced: 2025-04-12T23:37:59.712Z (6 months ago)
- Topics: aws, boto3, cloud, region, security, wrapper
- Language: Python
- Homepage: http://awsmanager.readthedocs.io/
- Size: 222 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Awspice
=======|Docs| |Version| |Codacy|
.. |Docs| image:: https://readthedocs.org/projects/awspice/badge/?version=latest
:target: http://awspice.readthedocs.io/en/latest/?badge=latest
:alt: Read the Docs
.. |Version| image:: http://img.shields.io/pypi/v/awspice.svg?style=flat
:target: https://pypi.python.org/pypi/awspice/
:alt: Version
.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/827a55c2ed47488c8e642fe799028319
:target: https://www.codacy.com/app/davidmoremad/awspice?utm_source=github.com&utm_medium=referral&utm_content=davidmoremad/awspice&utm_campaign=Badge_Grade
:alt: CodacyTable of content (Full doc in `ReadTheDocs `_) :
* `Installation <#installation>`_
* `Configuration <#configuration>`_
* `Test <#test>`_
* `Usage <#usage>`_****************
What is Awspice?
****************Is a wrapper tool of Boto3 library to list inventory and manage your AWS infrastructure
The objective of the wrapper is to abstract the use of AWS, being able to dig through all the data of our account,
and for example you will be able of:* Run a ssh-command for all instances in all regions
* List all instances with exposed critical ports like 22 or 3389
* Get info about all certificates of your account/s
* Obtain all the infrastructure after a domain associated with a balancer------------------------------------------------------------------------------------------
.. installation-section
************
Installation
************.. code-block:: bash
pip install awspice
------------------------------------------------------------------------------------------
.. configuration-section
*************
Configuration
*************The client is built and configured using ``awspice.connect()``. This method indicates the type of authentication and region on which you are going to work.
.. code-block:: python
import awspice
aws = awspice.connect() # Region: eu-west-1 | Profile: Default
aws = awspice.connect(region='us-west-2', profile='dev_profile')
aws = awspice.connect('us-west-2', access_key='AKIA***********', secret_key='/HR$4************')------------------------------------------------------------------------------------------
.. usage-section
*****
Usage
*******Example**: Get balancer and instances behind a domain.
.. code-block:: python
aws = awspice.connect()
elb = aws.service.elb.get_loadbalancer_by('domain', 'choosetravel.es')
for elb_instance in elb['Instances']:
instance = aws.service.ec2.get_instance_by('id', elb_instance['InstanceId'])**Example**: List all unused volumes
.. code-block:: python
regions = aws.service.ec2.get_regions()
volumes = awsmanager.service.ec2.get_volumes_by('status', 'available', regions=regions)**Example**: Search instance in all accounts and regions by Public IP
.. code-block:: python
profiles = aws.service.ec2.get_profiles()
regions = aws.service.ec2.get_regions()for profile in profiles:
aws.service.ec2.change_profile(profile)instance = aws.service.ec2.get_instance_by('publicip', '35.158.163.235', regions=regions)
if instance:
print 'Instance found: %s (Account: %s, Region: %s)' % (instance['InstanceId'], instance['RegionName'], instance['Authorization']['Value'])
break