@@ -13,6 +13,7 @@ DD_IOS_SECRETS_PATH_PREFIX='kv/aws/arn:aws:iam::486234852809:role/ci-dd-sdk-ios/
13
13
# Keep this list and Confluence page up-to-date with every secret that is added to the list.
14
14
DD_IOS_SECRET__TEST_SECRET=" test.secret"
15
15
DD_IOS_SECRET__GH_CLI_TOKEN=" gh.cli.token"
16
+ DD_IOS_SECRET__CARTHAGE_GH_TOKEN=" carthage.gh.token"
16
17
DD_IOS_SECRET__CP_TRUNK_TOKEN=" cocoapods.trunk.token"
17
18
DD_IOS_SECRET__SSH_KEY=" ssh.key"
18
19
DD_IOS_SECRET__E2E_CERTIFICATE_P12_BASE64=" e2e.certificate.p12.base64"
@@ -23,16 +24,17 @@ DD_IOS_SECRET__E2E_S8S_API_KEY="e2e.s8s.api.key"
23
24
DD_IOS_SECRET__E2E_S8S_APP_KEY=" e2e.s8s.app.key"
24
25
DD_IOS_SECRET__E2E_S8S_APPLICATION_ID=" e2e.s8s.app.id"
25
26
26
- declare -A DD_IOS_SECRETS=(
27
- [0]=" $DD_IOS_SECRET__TEST_SECRET | test secret to see if things work, free to change but not delete"
28
- [1]=" $DD_IOS_SECRET__GH_CLI_TOKEN | GitHub token to authenticate 'gh' cli (https://cli.github.com/)"
29
- [2]=" $DD_IOS_SECRET__CP_TRUNK_TOKEN | Cocoapods token to authenticate 'pod trunk' operations (https://guides.cocoapods.org/terminal/commands.html)"
30
- [3]=" $DD_IOS_SECRET__SSH_KEY | SSH key to authenticate 'git clone git@github.com:...' operations"
31
- [4]=" $DD_IOS_SECRET__E2E_CERTIFICATE_P12_BASE64 | Base64-encoded '.p12' certificate file for signing E2E app"
32
- [5]=" $DD_IOS_SECRET__E2E_CERTIFICATE_P12_PASSWORD | Password to '$DD_IOS_SECRET__E2E_CERTIFICATE_P12_BASE64 ' certificate"
33
- [6]=" $DD_IOS_SECRET__E2E_PROVISIONING_PROFILE_BASE64 | Base64-encoded provisioning profile file for signing E2E app"
34
- [7]=" $DD_IOS_SECRET__E2E_XCCONFIG_BASE64 | Base64-encoded xcconfig file for E2E app"
35
- [8]=" $DD_IOS_SECRET__E2E_S8S_API_KEY | DATADOG_API_KEY for uploading E2E app to synthetics"
36
- [9]=" $DD_IOS_SECRET__E2E_S8S_APP_KEY | DATADOG_APP_KEY for uploading E2E app to synthetics"
37
- [10]=" $DD_IOS_SECRET__E2E_S8S_APPLICATION_ID | Synthetics app ID for E2E tests"
38
- )
27
+ idx=0
28
+ declare -A DD_IOS_SECRETS
29
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__TEST_SECRET | test secret to see if things work, free to change but not delete"
30
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__GH_CLI_TOKEN | GitHub token to authenticate 'gh' cli (https://cli.github.com/)"
31
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__CARTHAGE_GH_TOKEN | GitHub token to avoid rate limiting Carthage commands (https://github.com/Carthage/Carthage/pull/605)"
32
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__CP_TRUNK_TOKEN | Cocoapods token to authenticate 'pod trunk' operations (https://guides.cocoapods.org/terminal/commands.html)"
33
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__SSH_KEY | SSH key to authenticate 'git clone git@github.com:...' operations"
34
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_CERTIFICATE_P12_BASE64 | Base64-encoded '.p12' certificate file for signing E2E app"
35
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_CERTIFICATE_P12_PASSWORD | Password to '$DD_IOS_SECRET__E2E_CERTIFICATE_P12_BASE64 ' certificate"
36
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_PROVISIONING_PROFILE_BASE64 | Base64-encoded provisioning profile file for signing E2E app"
37
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_XCCONFIG_BASE64 | Base64-encoded xcconfig file for E2E app"
38
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_S8S_API_KEY | DATADOG_API_KEY for uploading E2E app to synthetics"
39
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_S8S_APP_KEY | DATADOG_APP_KEY for uploading E2E app to synthetics"
40
+ DD_IOS_SECRETS[$(( idx++ )) ]=" $DD_IOS_SECRET__E2E_S8S_APPLICATION_ID | Synthetics app ID for E2E tests"
0 commit comments