Skip to content

Commit

Permalink
update docs to clarify how IP filtering works
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoresco-stripe committed Dec 1, 2023
1 parent 4cae3b1 commit 74d8e46
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [{
"name": "repro",
"type": "go",
"request": "launch",
"program": "main.go",
"args": ["--egress-acl-file", "acl.yaml", "--config-file", "config.yaml"]
}
]
}
14 changes: 14 additions & 0 deletions acl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: v1
services:
- name: report-dummy-srv
project: security
action: enforce
allowed_domains:
- stripe.com

default:
project: other
action: open

global_deny_list:
- 93.184.216.34
3 changes: 3 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
allow_missing_role: true
statsd_address: 127.0.0.1:8200
# deny_ranges: ["93.184.216.34/32"]

0 comments on commit 74d8e46

Please sign in to comment.