-
Notifications
You must be signed in to change notification settings - Fork 397
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
Doctl support for database firewalls management #950
Conversation
adding the following functionality: doctl databases firewalls list <db uuid> doctl databases firewalls add <db uuid> --rule type:value doctl databases firewalls remove <db uuid> --rule type:value doctl databases firewalls update <db uuid> --rule type:value [--rule type:value]
fix small test error
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.
Looks great overall!
A few minor details about the tests and how to add the godo
changes.
fix test issues for add and remove.
created at is enforced at database level and cannot be overriden.
adjusted the code to work without the need to change anything in godo.
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.
LGTM
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.
Looking great! A couple tiny suggestions in-line.
as per code review
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.
👍 Looks good to merge on green!
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.
all changes have been applied
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.
viewed.
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.
LGTM!
adding the following functionality:
doctl databases firewalls list
doctl databases firewalls add --rule type:value
doctl databases firewalls remove --rule type:value
doctl databases firewalls update --rule type:value [--rule type:value]