-
Notifications
You must be signed in to change notification settings - Fork 674
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
CIS Firewall Rules : added priority key #3998
CIS Firewall Rules : added priority key #3998
Conversation
Test case -
|
The test cases and documentation already covered creation and updation of resource with |
@@ -181,7 +185,8 @@ func ResourceIBMCISFirewallrulesUpdate(context context.Context, d *schema.Resour | |||
if d.HasChange(cisFilterID) || | |||
d.HasChange(cisFirewallrulesAction) || | |||
d.HasChange(cisFirewallrulesPaused) || | |||
d.HasChange(cisFilterDescription) { | |||
d.HasChange(cisFilterDescription) || | |||
d.HasChange(cisFirewallrulesPriority) { | |||
|
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.
in update handle the support for change in priority
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.
Added
* added priority to firewallrules * revert conflict changes * added priority in update Co-authored-by: Arpit Srivastava <arpit-mac@Arpits-MacBook-Pro.local>
* added priority to firewallrules * revert conflict changes * added priority in update Co-authored-by: Arpit Srivastava <arpit-mac@Arpits-MacBook-Pro.local>
Problem Statement -
priority
field in Firewall Rules while creating or updating a resourceIssue - https://github.ibm.com/NetworkTribe/CIS_Support/issues/2515