Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[aws|gcp][fix] Revert __init__.py changes #1791

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion plugins/aws/tools/awspolicygen/awspolicygen/__init__.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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