altimeter icon indicating copy to clipboard operation
altimeter copied to clipboard

Graph AWS resources in Neptune

Results 17 altimeter issues
Sort by recently updated
recently updated
newest added

I am trying to set up altimeter. I have set up the config file ('current_single_account.toml') and am having trouble getting the 'altimeter' command to work. I am working on a...

[`pipx`](https://github.com/pypa/pipx/) is a super useful way to install scripts into their own virtualenv. At the moment, it can make a good attempt at installing altimeter but doesn't set up the...

I am currently scanning an account in which I have close to full access but, due to compliance and security settings, I am unable to enumerate various settings. (SAML provider...

API Gateway domain names (and other API Gateway resources tbh) have their keys set to all lowercase letters. (an example can be seen in the response here: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/apigateway.html#APIGateway.Client.get_domain_names) Because `TagsField`...

API Gateway V2 APIs have their tags defined as a simple dictionary, rather than the traditional Key/Value pairing. `TagsField` will throw a `TypeError` as a result. An example response can...

I am currently trying to scan Base Path Mappings in API Gateway. This works as expected until it encounters an API Gateway V2 API. The `get_base_mappings` response data includes an...

This is blocked by https://github.com/boto/botocore/issues/2332 , once that is resolved we can bump boto versions and cut a new release.

I believe we could auto-generate this from schema classes.

Lambda's 15 min timeout becomes an issue as the number of accounts increases. Move the main aws2n process to ECS, continue using lambda for each account scan.

To get this to work with a Python 3.10.13 environment I needed to change v-env/lib/python3.10/site-packages/**tornado/httputil.py** this line 25: From: `import collections` To: `import collections.abc` and also here line 107: From:...