-
Notifications
You must be signed in to change notification settings - Fork 93
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
Refactoring Cloudiscovery CLI to support [provider] [resource] format #177
base: develop
Are you sure you want to change the base?
Refactoring Cloudiscovery CLI to support [provider] [resource] format #177
Conversation
Hi @jacorbello! Thanks for this PR! I'll try to analyze it tomorrow, ok?! 🤟🤟😃😃 |
Nice work! 👍🏻 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you fix the version? So, I think it's fine to merge!
Great job!
cloudiscovery/__init__.py
Outdated
@@ -41,7 +41,7 @@ | |||
print("Python 3.8 or newer is required", file=sys.stderr) | |||
sys.exit(1) | |||
|
|||
__version__ = "2.4.4" | |||
__version__ = "2.5.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As you refactored the arguments and it break actual usage, I think it's make more sense to update to version 3.0.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes perfect sense! Just pushed the new version number out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved!
I need to check circleci build, I think it crashed. Checking now. |
Might have been the change in version number, I forgot to update the git tag as well. Just updated that and pushed the tag up. Maybe that'll help? 🤷 |
Hii.. I was full of work last week, but this week I'm focusing in cloudiscovery! Let me fix this PR to merge! |
Hey @leandrodamascena, just checking in. Anything I can do to help with this PR? |
The purpose of this PR is to refactor the CLI to support multiple cloud providers. The changes proposed here will provide benefits in the following manners:
cloudiscovery aws network --vpc-id vpc-xxxxxxxx
cloudiscovery az network --vnet-name my-vnet
Note - This is a breaking change for any automated implementations of Cloudiscovery. Commands such as
aws-vpc
and similar are no longer supported in this refactor.This is to be the first of a series of pull requests to begin enabling multi-cloud provider support.