Skip to content
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

fixed typo in readme #17

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can configuree the Bolt action using inputs. Here is an example of how to co
with:
mode: 'audit'
default_policy: 'block-all'
allow-http: 'false'
allow_http: 'false'
egress_rules: |
- name: 'Allow GitHub subs'
destination: '*.github.com'
Expand All @@ -51,7 +51,7 @@ You can configuree the Bolt action using inputs. Here is an example of how to co
---------------------------------|---------------------------------
| `mode` | Configure the mode of operation for the Bolt gateway. It can be `audit` or `active`. Default: `audit` |
| `default_policy` | It can be either `block-all` or `allow-all`. Default: `block-all` |
| `allow-http` | Whether to allow non-secure HTTP requests or not. Default: `false`
| `allow_http` | Whether to allow non-secure HTTP requests or not. Default: `false`
| `egress_rules` | A list of custom egress rules to be applied. Default: `[]`.

## Custom Egress Policy
Expand All @@ -75,7 +75,7 @@ It is an ordered list of rules. The first rule that matches the destination will
with:
mode: 'audit'
default_policy: 'block-all'
allow-http: 'false'
allow_http: 'false'
egress_rules: |
- name: 'Allow GitHub subdomains'
destination: '*.github.com'
Expand Down
Loading