Skip to content

Commit

Permalink
Adding default values to fix correctness issue (#12286)
Browse files Browse the repository at this point in the history
* Adding default values to fix correctness issue

* revoke default value for allowedOrigins
  • Loading branch information
juniwang authored Jan 12, 2021
1 parent dd03be9 commit 0467bd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,8 @@
"properties": {
"defaultAction": {
"$ref": "#/definitions/ACLAction",
"description": "Default action when no other rule matches"
"description": "Default action when no other rule matches",
"default": "Deny"
},
"publicNetwork": {
"$ref": "#/definitions/NetworkACL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,8 @@
"properties": {
"defaultAction": {
"$ref": "#/definitions/ACLAction",
"description": "Default action when no other rule matches"
"description": "Default action when no other rule matches",
"default": "Deny"
},
"publicNetwork": {
"$ref": "#/definitions/NetworkACL",
Expand Down

0 comments on commit 0467bd6

Please sign in to comment.