Skip to content

Commit

Permalink
New Build 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanMolz committed Nov 15, 2024
1 parent a0fa5af commit 1b74a14
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM ubuntu:latest
LABEL maintainer="Daniel Moloney"
LABEL description="Wiz Semgrep Connector"

RUN apt-get update && apt-get install -y ca-certificates

COPY wiz-semgrep-connector /
COPY docker-entrypoint.sh /

Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,19 @@ WIZ_CLIENT_SECRET=your_wiz_client_secret
SEMGREP_API_TOKEN=your_semgrep_api_token
SEMGREP_DEPLOYMENT=your_semgrep_deployment
FETCH_INTERVAL=24
```

## Docker

You can also deploy the the connector as a docker container

```bash
docker run --name wiz-semgrep-connector -d \
-e WIZ_API_ENDPOINT=https://api.<region>.app.wiz.io/graphql \
-e WIZ_CLIENT_ID=your_wiz_client_id \
-e WIZ_CLIENT_SECRET=your_wiz_client_secret \
-e SEMGREP_API_TOKEN=your_semgrep_api_token \
-e SEMGREP_DEPLOYMENT=your_semgrep_deployment \
-e FETCH_INTERVAL=24 \
danielmoloney/wiz-semgrep-connector:latest
```
1 change: 1 addition & 0 deletions scripts/dev.version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.0

0 comments on commit 1b74a14

Please sign in to comment.