Skip to content

Commit 4ace260

Browse files
authored
Merge pull request #45 from GitGuardian/amascia/-/fix-ci-following-release
fix(ci): fix CI following schema changes with latest ggscout release
2 parents b843928 + 9ad683f commit 4ace260

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

charts/ggscout/examples/conjurcloud/values.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ inventory:
66
sources:
77
conjur_cloud:
88
type: conjurcloud
9-
auth_mode: "cyberark"
10-
client_id: "${CYBERARK_CLIENT_ID}"
11-
client_secret: "${CYBERARK_CLIENT_SECRET}"
9+
auth:
10+
auth_mode: "cyber_ark"
11+
client_id: "${CYBERARK_CLIENT_ID}"
12+
client_secret: "${CYBERARK_CLIENT_SECRET}"
13+
tenant_id: "${CYBERARK_TENANT_ID}"
1214
conjur_url: "${CONJUR_URL}"
1315
fetch_all_versions: true
1416
mode: "read/write" # Can be `read`, `write` or `read/write` depending on wether fetch and/or sync are enabled
1517
subdomain: "${CONJUR_SUBDOMAIN}"
16-
tenant_id: "${CYBERARK_TENANT_ID}"
1718

1819
gitguardian:
1920
endpoint: "https://my-gg-instance/v1"
@@ -24,14 +25,14 @@ inventory:
2425
# Set to `false` to disable the job
2526
enabled: true
2627
# Run every 15 minutes
27-
schedule: '*/15 * * * *'
28+
schedule: "*/15 * * * *"
2829
send: true
2930
# Job to be able to sync/write secrets from GitGuardian into you vault
3031
sync:
3132
# Set to `false` to disable the job
3233
enabled: true
3334
# Run every minute
34-
schedule: '* * * * *'
35+
schedule: "* * * * *"
3536

3637
envFrom:
3738
- secretRef:

charts/ggscout/examples/gcpsecretmanager/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ inventory:
77
gcp:
88
type: gcpsecretmanager
99
fetch_all_versions: true # Fetch all versions of secrets or not
10-
service_account_key_file: /gcp-key-secret/gcp_key.json # Path to GCP key file mounted from Secret
10+
auth:
11+
auth_mode: "service_account_key_file"
12+
key_file: /gcp-key-secret/gcp_key.json # Path to GCP key file mounted from Secret
1113
# projects: # List of GCP project ids or null
1214
# - project-id-1
1315
# - project-id-2

0 commit comments

Comments
 (0)