Metadata-Version: 2.4
Name: netbox-aws-vpc-plugin
Version: 0.0.8
Summary: NetBox plugin for modeling AWS VPCs in NetBox
Author-email: Daniel MacLaury <daniel@danielmaclaury.com>
Project-URL: Documentation, https://github.com/dmaclaury/netbox-aws-vpc-plugin/blob/main/README.md
Project-URL: Source, https://github.com/dmaclaury/netbox-aws-vpc-plugin
Project-URL: Tracker, https://github.com/dmaclaury/netbox-aws-vpc-plugin/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: black==25.9.0; extra == "test"
Requires-Dist: check-manifest==0.50; extra == "test"
Requires-Dist: flake8; extra == "test"
Requires-Dist: flake8-pyproject; extra == "test"
Requires-Dist: pre-commit==4.3.0; extra == "test"
Requires-Dist: pytest==8.4.2; extra == "test"
Dynamic: license-file

# NetBox AWS VPC Plugin

NetBox plugin for modeling AWS VPCs in NetBox

* Free software: Apache-2.0
* Documentation: https://dmaclaury.github.io/netbox-aws-vpc-plugin/

## Features

This plugin provides the following models in NetBox:

* AWS VPC
* AWS Subnet
* AWS Account

## Compatibility

| NetBox Version | Plugin Version |
|----------------|----------------|
|     4.0+       |    >= 0.0.1    |

## Installing

For adding to a NetBox Docker setup see
[the general instructions for using netbox-docker with plugins](https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins).

The plugin is available as a Python package on PyPi and can be installed with pip

```bash
pip install netbox-aws-vpc-plugin
```

or by adding to your `local_requirements.txt` or `plugin_requirements.txt` (netbox-docker):

```bash
netbox-aws-vpc-plugin
```

Enable the plugin in `/opt/netbox/netbox/netbox/configuration.py`,
 or if you use netbox-docker, your `/configuration/plugins.py` file :

```python
PLUGINS = [
    'netbox_aws_vpc_plugin'
]

PLUGINS_CONFIG = {
    "netbox_aws_vpc_plugin": {},
}
```

## Credits

Based on the NetBox plugin tutorial:

* [demo repository](https://github.com/netbox-community/netbox-plugin-demo)
* [tutorial](https://github.com/netbox-community/netbox-plugin-tutorial)

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [`netbox-community/cookiecutter-netbox-plugin`](https://github.com/netbox-community/cookiecutter-netbox-plugin) project template.
