feat: billing tags on CDK stack + inference profile creation script

This commit is contained in:
daniel
2026-05-15 20:35:02 -05:00
parent 4f17bbd2c3
commit ed6577ccf9
2 changed files with 160 additions and 0 deletions

View File

@@ -5,6 +5,11 @@ import { AgentClawStack } from '../lib/agent-claw-stack';
const app = new cdk.App();
// Billing tags applied to all resources in the stack
cdk.Tags.of(app).add('project', 'agent-claw');
cdk.Tags.of(app).add('env', 'prod');
cdk.Tags.of(app).add('owner', 'daniel');
new AgentClawStack(app, 'AgentClawStack', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,