Skip to content

Commit a487c48

Browse files
authored
generate config, pull in new go-client (#2360)
1 parent 85ba870 commit a487c48

12 files changed

Lines changed: 99 additions & 103 deletions

File tree

cli/go.mod

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ require (
1717
github.com/rs/zerolog v1.35.1
1818
github.com/samber/lo v1.53.0
1919
github.com/spf13/cobra v1.10.2
20-
github.com/theopenlane/core v1.16.8
21-
github.com/theopenlane/core/common v1.0.20
22-
github.com/theopenlane/go-client v0.9.5
20+
github.com/theopenlane/core v1.18.5
21+
github.com/theopenlane/core/common v1.0.21
22+
github.com/theopenlane/go-client v0.10.0
2323
github.com/theopenlane/httpsling v0.3.0
24-
github.com/theopenlane/iam v0.27.6
24+
github.com/theopenlane/iam v0.28.0
2525
github.com/theopenlane/utils v0.7.0
2626
golang.org/x/oauth2 v0.36.0
2727
golang.org/x/term v0.42.0
@@ -35,14 +35,13 @@ require (
3535
github.com/clipperhouse/uax29/v2 v2.4.0 // indirect
3636
github.com/danieljoos/wincred v1.2.3 // indirect
3737
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 // indirect
38-
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
3938
github.com/fatih/color v1.19.0 // indirect
4039
github.com/fsnotify/fsnotify v1.9.0 // indirect
4140
github.com/fumiama/go-docx v0.0.0-20250506085032-0c30fd09304b // indirect
4241
github.com/fumiama/imgsz v0.0.4 // indirect
4342
github.com/fxamacker/cbor/v2 v2.9.1 // indirect
4443
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
45-
github.com/go-webauthn/webauthn v0.17.0 // indirect
44+
github.com/go-webauthn/webauthn v0.17.2 // indirect
4645
github.com/go-webauthn/x v0.2.3 // indirect
4746
github.com/goccy/go-json v0.10.6 // indirect
4847
github.com/godbus/dbus/v5 v5.1.0 // indirect
@@ -52,7 +51,7 @@ require (
5251
github.com/google/uuid v1.6.0 // indirect
5352
github.com/gorilla/securecookie v1.1.2 // indirect
5453
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
55-
github.com/gqlgo/gqlgenc v0.35.1 // indirect
54+
github.com/gqlgo/gqlgenc v0.36.0 // indirect
5655
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f // indirect
5756
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5857
github.com/knadh/koanf/maps v0.1.2 // indirect
@@ -62,7 +61,7 @@ require (
6261
github.com/lestrrat-go/jwx/v3 v3.1.0 // indirect
6362
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
6463
github.com/mattn/go-colorable v0.1.14 // indirect
65-
github.com/mattn/go-isatty v0.0.21 // indirect
64+
github.com/mattn/go-isatty v0.0.22 // indirect
6665
github.com/mattn/go-runewidth v0.0.19 // indirect
6766
github.com/mitchellh/copystructure v1.2.0 // indirect
6867
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -73,7 +72,7 @@ require (
7372
github.com/olekukonko/tablewriter v1.1.3 // indirect
7473
github.com/philhofer/fwd v1.2.0 // indirect
7574
github.com/pkg/errors v0.9.1 // indirect
76-
github.com/redis/go-redis/v9 v9.18.0 // indirect
75+
github.com/redis/go-redis/v9 v9.19.0 // indirect
7776
github.com/robfig/cron/v3 v3.0.1 // indirect
7877
github.com/segmentio/asm v1.2.1 // indirect
7978
github.com/sosodev/duration v1.4.0 // indirect

cli/go.sum

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
3131
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3232
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 h1:5RVFMOWjMyRy8cARdy79nAmgYw3hK/4HUq48LQ6Wwqo=
3333
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1/go.mod h1:ZXNYxsqcloTdSy/rNShjYzMhyjf0LaoftYK0p+A3h40=
34-
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78=
35-
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc=
3634
github.com/fatih/color v1.19.0 h1:Zp3PiM21/9Ld6FzSKyL5c/BULoe/ONr9KlbYVOfG8+w=
3735
github.com/fatih/color v1.19.0/go.mod h1:zNk67I0ZUT1bEGsSGyCZYZNrHuTkJJB+r6Q9VuMi0LE=
3836
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
@@ -49,8 +47,7 @@ github.com/gabriel-vasile/mimetype v1.4.13 h1:46nXokslUBsAJE/wMsp5gtO500a4F3Nkz9
4947
github.com/gabriel-vasile/mimetype v1.4.13/go.mod h1:d+9Oxyo1wTzWdyVUPMmXFvp4F9tea18J8ufA774AB3s=
5048
github.com/go-viper/mapstructure/v2 v2.5.0 h1:vM5IJoUAy3d7zRSVtIwQgBj7BiWtMPfmPEgAXnvj1Ro=
5149
github.com/go-viper/mapstructure/v2 v2.5.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
52-
github.com/go-webauthn/webauthn v0.17.0 h1:8tFdaByIF7EgAg0W849Wt5q+213f1drsV2ggC0t80wM=
53-
github.com/go-webauthn/webauthn v0.17.0/go.mod h1:mQC6L0lZ5Kiu35G70zeB2WnrW4+vbHjR8Koq4HdVaMg=
50+
github.com/go-webauthn/webauthn v0.17.2 h1:e9YtSZTVnxnMWFezXi6JvnqOSxmH4Er8QDHK2a/mM40=
5451
github.com/go-webauthn/x v0.2.3 h1:8oArS+Rc1SWFLXhE17KZNx258Z4kUSyaDgsSncCO5RA=
5552
github.com/go-webauthn/x v0.2.3/go.mod h1:tM04GF3V6VYq79AZMl7vbj4q6pz9r7L2criWRzbWhPk=
5653
github.com/goccy/go-json v0.10.6 h1:p8HrPJzOakx/mn/bQtjgNjdTcN+/S6FcG2CTtQOrHVU=
@@ -80,8 +77,7 @@ github.com/gorilla/securecookie v1.1.2 h1:YCIWL56dvtr73r6715mJs5ZvhtnY73hBvEF8kX
8077
github.com/gorilla/securecookie v1.1.2/go.mod h1:NfCASbcHqRSY+3a8tlWJwsQap2VX5pwzwo4h3eOamfo=
8178
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 h1:JeSE6pjso5THxAzdVpqr6/geYxZytqFMBCOtn/ujyeo=
8279
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674/go.mod h1:r4w70xmWCQKmi1ONH4KIaBptdivuRPyosB9RmPlGEwA=
83-
github.com/gqlgo/gqlgenc v0.35.1 h1:wHg+0/SEU4Jp+gb5ted1i7jls2i3AqMuCOuUClOo+9Q=
84-
github.com/gqlgo/gqlgenc v0.35.1/go.mod h1:qszcs75kQw4fEP7szUpzPGPLtF8idQX7qGVrZDnvSuA=
80+
github.com/gqlgo/gqlgenc v0.36.0 h1:uM9oQGcZ4p/OPX1etDWAE6pNBi5LrT4pc7Ize3TDh4Q=
8581
github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k=
8682
github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
8783
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f h1:7LYC+Yfkj3CTRcShK0KOL/w6iTiKyqqBA9a41Wnggw8=
@@ -122,8 +118,7 @@ github.com/lestrrat-go/option/v2 v2.0.0 h1:XxrcaJESE1fokHy3FpaQ/cXW8ZsIdWcdFzzLO
122118
github.com/lestrrat-go/option/v2 v2.0.0/go.mod h1:oSySsmzMoR0iRzCDCaUfsCzxQHUEuhOViQObyy7S6Vg=
123119
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
124120
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
125-
github.com/mattn/go-isatty v0.0.21 h1:xYae+lCNBP7QuW4PUnNG61ffM4hVIfm+zUzDuSzYLGs=
126-
github.com/mattn/go-isatty v0.0.21/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
121+
github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4=
127122
github.com/mattn/go-runewidth v0.0.19 h1:v++JhqYnZuu5jSKrk9RbgF5v4CGUjqRfBm05byFGLdw=
128123
github.com/mattn/go-runewidth v0.0.19/go.mod h1:XBkDxAl56ILZc9knddidhrOlY5R/pDhgLpndooCuJAs=
129124
github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=
@@ -152,8 +147,7 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
152147
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
153148
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
154149
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
155-
github.com/redis/go-redis/v9 v9.18.0 h1:pMkxYPkEbMPwRdenAzUNyFNrDgHx9U+DrBabWNfSRQs=
156-
github.com/redis/go-redis/v9 v9.18.0/go.mod h1:k3ufPphLU5YXwNTUcCRXGxUoF1fqxnhFQmscfkCoDA0=
150+
github.com/redis/go-redis/v9 v9.19.0 h1:XPVaaPSnG6RhYf7p+rmSa9zZfeVAnWsH5h3lxthOm/k=
157151
github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs=
158152
github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro=
159153
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
@@ -186,18 +180,16 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
186180
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
187181
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
188182
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
189-
github.com/theopenlane/core v1.16.8 h1:RiZcF8IHJhYLL+4hoVMNNpKPK/pIDESBfhyUp4gouuo=
190-
github.com/theopenlane/core v1.16.8/go.mod h1:VU6soCV5af3sUTMibAylQg9vEnHf/GfJysgVKxv0ciY=
191-
github.com/theopenlane/core/common v1.0.20 h1:cCnNDpVXNHhMbRv7F/EZlxVvgOMxJANNtrJO5ChtFk8=
192-
github.com/theopenlane/core/common v1.0.20/go.mod h1:Kh437M+NAziL7PLBIiu/+ywiyeHrooeqPBz2VBryRu4=
183+
github.com/theopenlane/core v1.18.5 h1:rYMET0sVXlAUW7l3MIsdVLcdn+hr53CU5Qj6Hx0NHGI=
184+
github.com/theopenlane/core/common v1.0.21 h1:KWdGMCQT0WRdp4V/kvTUTnWu3cgE7ep9RFQeHIsK5AE=
185+
github.com/theopenlane/core/common v1.0.21/go.mod h1:waXdCoEZt/jaSmHa1e/U/of1AeauVg1WcaNg/usWAlg=
193186
github.com/theopenlane/echox v0.3.0 h1:uwOKEw+r1utGQoOR6dZQqAVuY5j8TcasqnTwO5+rMsA=
194187
github.com/theopenlane/echox v0.3.0/go.mod h1:yTrXnj7s3VNIg0FCvB7Dut2Elr+LqJKU/nruxx1E1cM=
195-
github.com/theopenlane/go-client v0.9.5 h1:ZGcKqqNEs6Vesv0dpB9H1sQGY8+JkIQoYsR1BzUxCAY=
196-
github.com/theopenlane/go-client v0.9.5/go.mod h1:iBON7tkOFEUF0t+HYvDmlED34aiaN+O/HnQsDm1jb2A=
188+
github.com/theopenlane/go-client v0.10.0 h1:gBEOEWXM3nP7VlXPcmgA/0RPWcvSz1XzFBwA/1EJsgo=
197189
github.com/theopenlane/httpsling v0.3.0 h1:Bad0dGdqCqAB8UVDyVo+YCevzRvGHhmkK22F7T3pXtY=
198190
github.com/theopenlane/httpsling v0.3.0/go.mod h1:iJc3XRLYTFIpfCnPpLZVMBP0xsWIPAb7ozARtQoclAE=
199-
github.com/theopenlane/iam v0.27.6 h1:K3BfqXq1sSrR0Dbr6TwiqfxiUH9noR53KJV45KLTfWU=
200-
github.com/theopenlane/iam v0.27.6/go.mod h1:hPFEGXZvx7njbOFJRqtuiYeer/WG64uXFh9eFi7dieQ=
191+
github.com/theopenlane/iam v0.28.0 h1:4kBlhkh2fh3/TASKtNFnL1HGFBB992AFGtHR15exgDs=
192+
github.com/theopenlane/iam v0.28.0/go.mod h1:ADxV1C4+KsH8MYyk8YcbMONpk+rHEcR0ZsRM0Ul1rXQ=
201193
github.com/theopenlane/utils v0.7.0 h1:tSN9PBC8Ywn2As3TDW/1TAfWsVsodrccec40oAhiZgo=
202194
github.com/theopenlane/utils v0.7.0/go.mod h1:7U9CDoVzCAFWw/JygR5ZhCKGwhHBnuJpK3Jgh1m59+w=
203195
github.com/tinylib/msgp v1.6.4 h1:mOwYbyYDLPj35mkA2BjjYejgJk9BuHxDdvRnb6v2ZcQ=
@@ -220,8 +212,7 @@ github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M
220212
github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
221213
github.com/zalando/go-keyring v0.2.6 h1:r7Yc3+H+Ux0+M72zacZoItR3UDxeWfKTcabvkI8ua9s=
222214
github.com/zalando/go-keyring v0.2.6/go.mod h1:2TCrxYrbUNYfNS/Kgy/LSrkSQzZ5UPVH85RwfczwvcI=
223-
github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
224-
github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
215+
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
225216
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
226217
go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
227218
go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y=

common/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.26.2
44

55
require (
66
entgo.io/ent v0.14.6
7-
github.com/go-webauthn/webauthn v0.17.0
7+
github.com/go-webauthn/webauthn v0.17.2
88
github.com/google/uuid v1.6.0
99
github.com/riverqueue/river v0.32.0
1010
github.com/robfig/cron/v3 v3.0.1
@@ -13,7 +13,7 @@ require (
1313
github.com/stretchr/testify v1.11.1
1414
github.com/theopenlane/core v1.16.8
1515
github.com/theopenlane/echox v0.3.0
16-
github.com/theopenlane/entx v0.26.0
16+
github.com/theopenlane/entx v0.27.0
1717
github.com/theopenlane/utils v0.7.0
1818
github.com/zitadel/oidc/v3 v3.46.0
1919
golang.org/x/oauth2 v0.36.0
@@ -49,7 +49,7 @@ require (
4949
github.com/jackc/pgx/v5 v5.9.2 // indirect
5050
github.com/jackc/puddle/v2 v2.2.2 // indirect
5151
github.com/mattn/go-colorable v0.1.14 // indirect
52-
github.com/mattn/go-isatty v0.0.21 // indirect
52+
github.com/mattn/go-isatty v0.0.22 // indirect
5353
github.com/mattn/go-sqlite3 v1.14.32 // indirect
5454
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
5555
github.com/muhlemmer/gu v0.3.1 // indirect
@@ -70,7 +70,7 @@ require (
7070
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
7171
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
7272
github.com/x448/float16 v0.8.4 // indirect
73-
github.com/zclconf/go-cty v1.18.0 // indirect
73+
github.com/zclconf/go-cty v1.18.1 // indirect
7474
github.com/zclconf/go-cty-yaml v1.2.0 // indirect
7575
github.com/zitadel/schema v1.3.2 // indirect
7676
go.opentelemetry.io/auto/sdk v1.2.1 // indirect

common/go.sum

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ github.com/go-test/deep v1.1.1 h1:0r/53hagsehfO4bzD2Pgr/+RgHqhmf+k1Bpse2cTu1U=
4545
github.com/go-test/deep v1.1.1/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
4646
github.com/go-viper/mapstructure/v2 v2.5.0 h1:vM5IJoUAy3d7zRSVtIwQgBj7BiWtMPfmPEgAXnvj1Ro=
4747
github.com/go-viper/mapstructure/v2 v2.5.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
48-
github.com/go-webauthn/webauthn v0.17.0 h1:8tFdaByIF7EgAg0W849Wt5q+213f1drsV2ggC0t80wM=
48+
github.com/go-webauthn/webauthn v0.17.2 h1:e9YtSZTVnxnMWFezXi6JvnqOSxmH4Er8QDHK2a/mM40=
4949
github.com/go-webauthn/x v0.2.3 h1:8oArS+Rc1SWFLXhE17KZNx258Z4kUSyaDgsSncCO5RA=
5050
github.com/go-webauthn/x v0.2.3/go.mod h1:tM04GF3V6VYq79AZMl7vbj4q6pz9r7L2criWRzbWhPk=
5151
github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM=
@@ -84,7 +84,7 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
8484
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
8585
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
8686
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
87-
github.com/mattn/go-isatty v0.0.21 h1:xYae+lCNBP7QuW4PUnNG61ffM4hVIfm+zUzDuSzYLGs=
87+
github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4=
8888
github.com/mattn/go-sqlite3 v1.14.32 h1:JD12Ag3oLy1zQA+BNn74xRgaBbdhbNIDYvQUEuuErjs=
8989
github.com/mattn/go-sqlite3 v1.14.32/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
9090
github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0=
@@ -137,7 +137,8 @@ github.com/theopenlane/core v1.16.8 h1:RiZcF8IHJhYLL+4hoVMNNpKPK/pIDESBfhyUp4gou
137137
github.com/theopenlane/core v1.16.8/go.mod h1:VU6soCV5af3sUTMibAylQg9vEnHf/GfJysgVKxv0ciY=
138138
github.com/theopenlane/echox v0.3.0 h1:uwOKEw+r1utGQoOR6dZQqAVuY5j8TcasqnTwO5+rMsA=
139139
github.com/theopenlane/echox v0.3.0/go.mod h1:yTrXnj7s3VNIg0FCvB7Dut2Elr+LqJKU/nruxx1E1cM=
140-
github.com/theopenlane/entx v0.26.0 h1:UPHMEGKLkNXaBBeoNmXLNl49RyuPH+hxslUHzQDa0kg=
140+
github.com/theopenlane/entx v0.27.0 h1:Nm1pRNz/nGLDRMnDt7LXXNJIkxFKm3L9j4NAxmKvEmk=
141+
github.com/theopenlane/entx v0.27.0/go.mod h1:JM1Vh0bfvNNxMVBxWvcbEHRi0pdTIPgp2gW8rzr7sBA=
141142
github.com/theopenlane/utils v0.7.0 h1:tSN9PBC8Ywn2As3TDW/1TAfWsVsodrccec40oAhiZgo=
142143
github.com/theopenlane/utils v0.7.0/go.mod h1:7U9CDoVzCAFWw/JygR5ZhCKGwhHBnuJpK3Jgh1m59+w=
143144
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
@@ -159,8 +160,7 @@ github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAh
159160
github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
160161
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
161162
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
162-
github.com/zclconf/go-cty v1.18.0 h1:pJ8+HNI4gFoyRNqVE37wWbJWVw43BZczFo7KUoRczaA=
163-
github.com/zclconf/go-cty v1.18.0/go.mod h1:qpnV6EDNgC1sns/AleL1fvatHw72j+S+nS+MJ+T2CSg=
163+
github.com/zclconf/go-cty v1.18.1 h1:yEGE8M4iIZlyKQURZNb2SnEyZlZHUcBCnx6KF81KuwM=
164164
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
165165
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
166166
github.com/zclconf/go-cty-yaml v1.2.0 h1:GDyL4+e/Qe/S0B7YaecMLbVvAR/Mp21CXMOSiCTOi1M=

config/config.example.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ entconfig:
141141
maximumsentences: 10
142142
type: lexrank
143143
integrations:
144-
awsSecurityHub:
144+
awssecurityhub:
145145
accesskeyid: ""
146146
arn: ""
147147
secretaccesskey: ""
@@ -182,7 +182,7 @@ integrations:
182182
clientid: ""
183183
clientsecret: ""
184184
redirecturl: https://api.theopenlane.io/v1/integrations/auth/callback
185-
slackRuntime:
185+
slackruntime:
186186
botToken: ""
187187
defaultChannel: ""
188188
webhookURL: ""

config/configmap-config-file.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -943,10 +943,10 @@ data:
943943
{{- end }}
944944
{{- if .Values.openlane.coreConfiguration.integrations }}
945945
integrations:
946-
{{- if .Values.openlane.coreConfiguration.integrations.awsSecurityHub }}
947-
awsSecurityHub:
948-
{{- if .Values.openlane.coreConfiguration.integrations.awsSecurityHub.arn }}
949-
arn: {{ .Values.openlane.coreConfiguration.integrations.awsSecurityHub.arn | quote }}
946+
{{- if .Values.openlane.coreConfiguration.integrations.awssecurityhub }}
947+
awssecurityhub:
948+
{{- if .Values.openlane.coreConfiguration.integrations.awssecurityhub.arn }}
949+
arn: {{ .Values.openlane.coreConfiguration.integrations.awssecurityhub.arn | quote }}
950950
{{- end }}
951951
{{- end }}
952952
{{- if .Values.openlane.coreConfiguration.integrations.githubapp }}
@@ -967,16 +967,16 @@ data:
967967
appid: {{ .Values.openlane.coreConfiguration.integrations.slack.appid | quote }}
968968
{{- end }}
969969
{{- end }}
970-
{{- if .Values.openlane.coreConfiguration.integrations.slackRuntime }}
971-
slackRuntime:
972-
{{- if .Values.openlane.coreConfiguration.integrations.slackRuntime.webhookURL }}
973-
webhookURL: {{ .Values.openlane.coreConfiguration.integrations.slackRuntime.webhookURL | quote }}
970+
{{- if .Values.openlane.coreConfiguration.integrations.slackruntime }}
971+
slackruntime:
972+
{{- if .Values.openlane.coreConfiguration.integrations.slackruntime.webhookURL }}
973+
webhookURL: {{ .Values.openlane.coreConfiguration.integrations.slackruntime.webhookURL | quote }}
974974
{{- end }}
975-
{{- if .Values.openlane.coreConfiguration.integrations.slackRuntime.botToken }}
976-
botToken: {{ .Values.openlane.coreConfiguration.integrations.slackRuntime.botToken | quote }}
975+
{{- if .Values.openlane.coreConfiguration.integrations.slackruntime.botToken }}
976+
botToken: {{ .Values.openlane.coreConfiguration.integrations.slackruntime.botToken | quote }}
977977
{{- end }}
978-
{{- if .Values.openlane.coreConfiguration.integrations.slackRuntime.defaultChannel }}
979-
defaultChannel: {{ .Values.openlane.coreConfiguration.integrations.slackRuntime.defaultChannel | quote }}
978+
{{- if .Values.openlane.coreConfiguration.integrations.slackruntime.defaultChannel }}
979+
defaultChannel: {{ .Values.openlane.coreConfiguration.integrations.slackruntime.defaultChannel | quote }}
980980
{{- end }}
981981
{{- end }}
982982
{{- if .Values.openlane.coreConfiguration.integrations.googleworkspace }}

0 commit comments

Comments
 (0)