Skip to content

Commit

Permalink
[aws|gcp][fix] Revert __init__.py changes (#1791)
Browse files Browse the repository at this point in the history
* [aws|gcp][fix] Revert __init__.py changes

* Update license
  • Loading branch information
lloesche committed Oct 2, 2023
1 parent 88d8b99 commit a458c23
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
11 changes: 10 additions & 1 deletion plugins/aws/tools/awspolicygen/awspolicygen/__init__.py
Expand Up @@ -6,9 +6,18 @@
Resoto AWS policy generator and uploader
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This script generates the required AWS access policy and uploads it to the CDN.
:copyright: © 2022 Some Engineering Inc.
:copyright: © 2023 Some Engineering Inc.
:license: AGPL-3.0, see LICENSE for more details.
"""

__title__ = "awspolicygen"
__description__ = "Resoto AWS policy generator and uploader."
__author__ = "Some Engineering Inc."
__license__ = "AGPL-3.0"
__copyright__ = "Copyright © 2023 Some Engineering Inc."
__version__ = "0.0.1"


logging.basicConfig(
level=logging.INFO,
format="%(levelname)s - %(message)s",
Expand Down
15 changes: 15 additions & 0 deletions plugins/gcp/tools/gcppolicygen/gcppolicygen/__init__.py
Expand Up @@ -2,6 +2,21 @@
import logging
from argparse import ArgumentParser, Namespace

"""
Resoto GCP policy generator and uploader
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This script generates the required GCP access policy and uploads it to the CDN.
:copyright: © 2023 Some Engineering Inc.
:license: AGPL-3.0, see LICENSE for more details.
"""

__title__ = "gcppolicygen"
__description__ = "Resoto GCP policy generator and uploader."
__author__ = "Some Engineering Inc."
__license__ = "AGPL-3.0"
__copyright__ = "Copyright © 2023 Some Engineering Inc."
__version__ = "0.0.1"


logging.basicConfig(
level=logging.INFO,
Expand Down

0 comments on commit a458c23

Please sign in to comment.