Skip to content

Commit 0a06947

Browse files
committed
fix(aws-cdk): Fix IRSA service account name to match Helm chart
The Helm chart names the SA `<release>-service-account`, not `clp-s3-access`. Update OIDC condition to use `clp-service-account`.
1 parent 1d97caf commit 0a06947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/deployment/aws-cdk/lib/clp-stack.ts

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

3131
const conditionKey = new cdk.CfnJson(this, "OidcConditionKey", {
3232
value: {
33-
[`${oidcIssuer}:sub`]: "system:serviceaccount:clp:clp-s3-access",
33+
[`${oidcIssuer}:sub`]: "system:serviceaccount:clp:clp-service-account",
3434
[`${oidcIssuer}:aud`]: "sts.amazonaws.com",
3535
},
3636
});

0 commit comments

Comments
 (0)