Skip to content

Commit

Permalink
chore: rename shield to frontier and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Chief-Rishab authored and ravisuhag committed Aug 23, 2023
1 parent c92133e commit 500f924
Show file tree
Hide file tree
Showing 20 changed files with 1,347 additions and 320 deletions.
4 changes: 2 additions & 2 deletions docs/docs/reference/extractors.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ that particular extractor can be found by visiting the link in the `type` field.
| Type | Email | Username | FullName | Title | IsActive | ManagerEmail | Profiles | Memberships | facets | common |
| :------------------------ | :---- | :------- | :------- | :---- | :------- | :----------- | :------- | :---------- | :----- | :----- |
| [`github`][github-readme] |||||||||||
| [`shield`][shield-readme] |||||||||||
| [`frontier`][frontier-readme] |||||||||||
| [`gsuite`][gsuite-readme] |||||||||||

### Bucket
Expand Down Expand Up @@ -109,7 +109,7 @@ of asset.
[redash-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/redash/README.md
[kafka-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/kafka/README.md
[github-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/github/README.md
[shield-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/shield/README.md
[frontier-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/frontier/README.md
[gsuite-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/gsuite/README.md
[gcs-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/gcs/README.md
[optimus-readme]: https://github.com/raystack/meteor/tree/main/plugins/extractors/optimus/README.md
Expand Down
12 changes: 6 additions & 6 deletions docs/docs/reference/sinks.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,19 @@ sinks:
send_format_header: false
```

## Shield
## Frontier

`shield`
`frontier`

Upsert users to shield service running at a given 'host'. Request will be sent via GRPC.
Upsert users to frontier service running at a given 'host'. Request will be sent via GRPC.

```yaml
sinks:
name: shield
name: frontier
config:
host: shield.com
host: frontier.com
headers:
X-Shield-Email: [email protected]
X-Frontier-Email: [email protected]
X-Other-Header: value1, value2
```

Expand Down
42 changes: 21 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ module github.com/raystack/meteor
go 1.16

require (
cloud.google.com/go/bigquery v1.44.0
cloud.google.com/go/bigquery v1.52.0
cloud.google.com/go/bigtable v1.10.1
cloud.google.com/go/datacatalog v1.10.0
cloud.google.com/go/logging v1.6.1
cloud.google.com/go/storage v1.28.1
cloud.google.com/go/datacatalog v1.14.1
cloud.google.com/go/logging v1.7.0
cloud.google.com/go/storage v1.32.0
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/ClickHouse/clickhouse-go v1.4.5
github.com/MakeNowJust/heredoc v1.0.0
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
github.com/aws/aws-sdk-go v1.44.151
github.com/aws/aws-sdk-go v1.44.314
github.com/blastrain/vitess-sqlparser v0.0.0-20201030050434-a139afbb1aba
github.com/cenkalti/backoff/v4 v4.2.0
github.com/cenkalti/backoff/v4 v4.2.1
github.com/d5/tengo/v2 v2.13.0
github.com/denisenkom/go-mssqldb v0.12.3
github.com/dnaeon/go-vcr/v2 v2.0.1
Expand All @@ -27,39 +27,39 @@ require (
github.com/go-kivik/kivik v2.0.0+incompatible
github.com/go-kivik/kiviktest v2.0.0+incompatible // indirect
github.com/go-playground/validator/v10 v10.10.0
github.com/go-sql-driver/mysql v1.7.0
github.com/go-sql-driver/mysql v1.7.1
github.com/gocql/gocql v0.0.0-20210817081954-bc256bbb90de
github.com/google/go-cmp v0.5.9
github.com/google/go-github/v37 v37.0.0
github.com/gopherjs/gopherjs v0.0.0-20210503212227-fb464eba2686 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/lib/pq v1.10.7
github.com/lib/pq v1.10.9
github.com/mcuadros/go-defaults v1.2.0
github.com/mitchellh/mapstructure v1.5.0
github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249
github.com/ory/dockertest/v3 v3.9.1
github.com/ory/dockertest/v3 v3.10.0
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/pkg/errors v0.9.1
github.com/prestodb/presto-go-client v0.0.0-20211201125635-ad28cec17d6c
github.com/raystack/frontier v0.7.2
github.com/raystack/optimus v0.7.2-0.20230725205201-5874457c7bbe
github.com/raystack/salt v0.3.2
github.com/raystack/shield v0.6.2
github.com/schollz/progressbar/v3 v3.13.0
github.com/segmentio/kafka-go v0.4.39
github.com/sergi/go-diff v1.1.0 // indirect
github.com/sijms/go-ora/v2 v2.2.22
github.com/snowflakedb/gosnowflake v1.6.7
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.14.0
github.com/stretchr/testify v1.8.2
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.16.0
github.com/stretchr/testify v1.8.4
gitlab.com/flimzy/testy v0.8.0 // indirect
go.mongodb.org/mongo-driver v1.10.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.36.1
golang.org/x/oauth2 v0.4.0
google.golang.org/api v0.107.0
google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5
google.golang.org/grpc v1.53.0
google.golang.org/protobuf v1.30.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.0
golang.org/x/oauth2 v0.10.0
google.golang.org/api v0.134.0
google.golang.org/genproto v0.0.0-20230724170836-66ad5b6ff146
google.golang.org/genproto/googleapis/rpc v0.0.0-20230724170836-66ad5b6ff146
google.golang.org/grpc v1.56.2
google.golang.org/protobuf v1.31.0
gopkg.in/yaml.v3 v3.0.1
)
Loading

0 comments on commit 500f924

Please sign in to comment.