Skip to content

Commit 4f3f4da

Browse files
jchrostek-ddclaude
andcommitted
chore: hardcode org UUID in auth stack, remove SERVERLESS_UUID from CI
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent cd13a3c commit 4f3f4da

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.gitlab/scripts/get_secrets.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ printf "Getting DD APP KEY...\n"
3131

3232
export DD_APP_KEY=$(vault kv get -field=dd-app-key kv/k8s/gitlab-runner/datadog-lambda-extension/secrets)
3333

34-
printf "Getting Serverless UUID...\n"
35-
36-
export SERVERLESS_UUID=$(vault kv get -field=serverless-uuid kv/k8s/gitlab-runner/datadog-lambda-extension/secrets)
37-
3834
printf "Assuming role...\n"
3935

4036
export $(printf "AWS_ACCESS_KEY_ID=%s AWS_SECRET_ACCESS_KEY=%s AWS_SESSION_TOKEN=%s" \

integration-tests/lib/stacks/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class AuthStack extends cdk.Stack {
2828

2929
const role = iam.Role.fromRoleName(this, 'AuthRole', AUTH_ROLE_NAME);
3030

31-
const orgUuid = process.env.SERVERLESS_UUID || '';
31+
const orgUuid = '80372b20-c861-11ea-9d80-67f811a2b630';
3232

3333
const delegatedAuthEnv = {
3434
DD_SITE: 'datadoghq.com',

0 commit comments

Comments
 (0)