Skip to content

Commit

Permalink
fix: argo sa arn is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfouquet committed Oct 26, 2023
1 parent f3c2a4a commit 82592fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/eks/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@ export class LinzEksCluster extends Stack {
namespace: 'argo',
});
argoRunnerSa.node.addDependency(argoNs);
new CfnOutput(this, 'ArgoRunnerServiceAccountRoleArn', { value: fluentBitSa.role.roleArn });
new CfnOutput(this, 'ArgoRunnerServiceAccountRoleArn', { value: argoRunnerSa.role.roleArn });
}
}

0 comments on commit 82592fc

Please sign in to comment.