-
Notifications
You must be signed in to change notification settings - Fork 87
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
When creating civo firewall, --create-rules=false
still creates default firewall rules
#446
Comments
Yeah there is a couple of issues with this that we need to fix. In the meantime the work around is to run the command like this: civo fw create test-fw -n test-net --create-rules=false |
So the "issue" here is the following:
So in our case, the issue is that our default is to create rules, so having a flag called --create-rules feels a little redundant. In reality we should have just created a flag called These are some ways we can tackle this problem:
I am partial to the first solution. |
Hi @uzaxirr, Whenever you have a moment, could you please review this? |
hii @Praveen005 Please create a PR |
Issue
After creating the civo network "test-net", creating a civo firewall with the command
civo fw create test-fw -n test-net --create-rules false
, creates the default rules (same as when the--create-rules
istrue
:For example:
Acceptance Criteria
civo create fw
with the flag--create-rules=false
, there will be no rules created for the firewall.The text was updated successfully, but these errors were encountered: