-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade OpenVPN Access Server version
Remove notification features Use pydantic for validations Add custom exceptions Include image factory to retrieve AMI IDs Disassociate security group before delete Reduce redundancy by reusing boto3 clients Convert interaction commands into objects Add utility scripts to get instance types and regions Update release_notes.rst and README.md
- Loading branch information
1 parent
14f5b2b
commit 42f9011
Showing
36 changed files
with
1,961 additions
and
1,676 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
.. VPN Server documentation master file, created by | ||
sphinx-quickstart on Tue Sep 14 23:25:43 2021. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to VPN Server's documentation! | ||
====================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Read Me: | ||
|
||
README | ||
|
||
VPN Server | ||
========== | ||
|
||
.. automodule:: vpn.main | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
Configuration | ||
============= | ||
|
||
.. autoclass:: vpn.models.config.ConfigurationSettings(pydantic.BaseModel) | ||
:members: | ||
:exclude-members: _abc_impl, model_config, model_fields | ||
|
||
==== | ||
|
||
.. autoclass:: vpn.models.config.AMIBase(pydantic.BaseModel) | ||
:members: | ||
:exclude-members: _abc_impl, model_config, model_fields | ||
|
||
==== | ||
|
||
.. autoclass:: vpn.models.config.EnvConfig(pydantic.BaseSettings) | ||
:members: | ||
:exclude-members: _abc_impl, model_config, model_fields | ||
|
||
==== | ||
|
||
.. autoclass:: vpn.models.config.Settings(pydantic.BaseModel) | ||
:members: | ||
:exclude-members: _abc_impl, model_config, model_fields | ||
|
||
Exceptions | ||
========== | ||
|
||
.. automodule:: vpn.models.exceptions | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
ImageFactory | ||
============ | ||
|
||
.. automodule:: vpn.models.image_factory | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
LOGGER | ||
====== | ||
|
||
.. automodule:: vpn.models.logger | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
Route53 | ||
======= | ||
|
||
.. automodule:: vpn.models.route53 | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
SSH Configuration | ||
================= | ||
|
||
.. automodule:: vpn.models.server | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
Utilities | ||
========= | ||
|
||
.. automodule:: vpn.models.util | ||
:members: | ||
:private-members: | ||
:undoc-members: | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.