-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathinfra-stack.ts
More file actions
302 lines (274 loc) · 9.65 KB
/
Copy pathinfra-stack.ts
File metadata and controls
302 lines (274 loc) · 9.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from 'aws-cdk-lib';
import * as iam from 'aws-cdk-lib/aws-iam';
import * as ecr from 'aws-cdk-lib/aws-ecr';
import * as codebuild from 'aws-cdk-lib/aws-codebuild';
import * as s3 from 'aws-cdk-lib/aws-s3';
import { Construct } from 'constructs';
export class AgentCoreInfraStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// Create ECR repository for the agent container
const agentRepository = new ecr.Repository(this, 'AgentRepository', {
repositoryName: 'strands_agent_repository',
removalPolicy: cdk.RemovalPolicy.DESTROY,
emptyOnDelete: true,
lifecycleRules: [{
maxImageCount: 5,
description: 'Keep only 5 most recent images',
}],
});
// Create IAM role for the agent runtime
const agentRole = new iam.Role(this, 'AgentRuntimeRole', {
assumedBy: new iam.ServicePrincipal('bedrock-agentcore.amazonaws.com'),
description: 'Execution role for AgentCore runtime',
});
// ECR Image Access
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'ECRImageAccess',
effect: iam.Effect.ALLOW,
actions: [
'ecr:BatchGetImage',
'ecr:GetDownloadUrlForLayer',
],
resources: [`arn:aws:ecr:${this.region}:${this.account}:repository/*`],
}));
// ECR Token Access
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'ECRTokenAccess',
effect: iam.Effect.ALLOW,
actions: ['ecr:GetAuthorizationToken'],
resources: ['*'],
}));
// CloudWatch Logs
agentRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
'logs:DescribeLogStreams',
'logs:CreateLogGroup',
],
resources: [`arn:aws:logs:${this.region}:${this.account}:log-group:/aws/bedrock-agentcore/runtimes/*`],
}));
agentRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: ['logs:DescribeLogGroups'],
resources: [`arn:aws:logs:${this.region}:${this.account}:log-group:*`],
}));
agentRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
'logs:CreateLogStream',
'logs:PutLogEvents',
],
resources: [`arn:aws:logs:${this.region}:${this.account}:log-group:/aws/bedrock-agentcore/runtimes/*:log-stream:*`],
}));
// X-Ray Tracing
agentRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
'xray:PutTraceSegments',
'xray:PutTelemetryRecords',
'xray:GetSamplingRules',
'xray:GetSamplingTargets',
],
resources: ['*'],
}));
// CloudWatch Metrics
agentRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: ['cloudwatch:PutMetricData'],
resources: ['*'],
conditions: {
StringEquals: {
'cloudwatch:namespace': 'bedrock-agentcore',
},
},
}));
// AgentCore Identity - Get Workload Access Token
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'GetAgentAccessToken',
effect: iam.Effect.ALLOW,
actions: [
'bedrock-agentcore:GetWorkloadAccessToken',
'bedrock-agentcore:GetWorkloadAccessTokenForJWT',
'bedrock-agentcore:GetWorkloadAccessTokenForUserId',
],
resources: [
`arn:aws:bedrock-agentcore:${this.region}:${this.account}:workload-identity-directory/default`,
`arn:aws:bedrock-agentcore:${this.region}:${this.account}:workload-identity-directory/default/workload-identity/strands_agent-*`,
],
}));
// Bedrock Model Invocation (including Converse API and Inference Profiles)
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'BedrockModelInvocation',
effect: iam.Effect.ALLOW,
actions: [
'bedrock:InvokeModel',
'bedrock:InvokeModelWithResponseStream',
'bedrock:Converse',
'bedrock:ConverseStream',
],
resources: [
'arn:aws:bedrock:*::foundation-model/*',
`arn:aws:bedrock:${this.region}:${this.account}:inference-profile/*`,
`arn:aws:bedrock:*:${this.account}:inference-profile/*`,
`arn:aws:bedrock:${this.region}:${this.account}:*`,
],
}));
// AWS Marketplace permissions for Bedrock models
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'MarketplaceAccess',
effect: iam.Effect.ALLOW,
actions: [
'aws-marketplace:ViewSubscriptions',
'aws-marketplace:Subscribe',
'aws-marketplace:Unsubscribe',
],
resources: ['*'],
}));
// AgentCore Memory Access
agentRole.addToPolicy(new iam.PolicyStatement({
sid: 'AgentCoreMemoryAccess',
effect: iam.Effect.ALLOW,
actions: [
'bedrock-agentcore:ListSessions',
'bedrock-agentcore:CreateEvent',
'bedrock-agentcore:GetEvent',
'bedrock-agentcore:ListEvents',
'bedrock-agentcore:DeleteEvent',
],
resources: [
`arn:aws:bedrock-agentcore:${this.region}:${this.account}:memory/*`,
],
}));
// Create S3 bucket for CodeBuild source
const sourceBucket = new s3.Bucket(this, 'SourceBucket', {
bucketName: `bedrock-agentcore-sources-${this.account}-${this.region}`,
removalPolicy: cdk.RemovalPolicy.DESTROY,
autoDeleteObjects: true,
lifecycleRules: [{
expiration: cdk.Duration.days(7),
id: 'DeleteOldSources',
}],
});
// Create IAM role for CodeBuild
const codeBuildRole = new iam.Role(this, 'CodeBuildRole', {
assumedBy: new iam.ServicePrincipal('codebuild.amazonaws.com'),
description: 'Build role for container image pipeline',
});
// Grant CodeBuild permissions - ECR Token Access
codeBuildRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: ['ecr:GetAuthorizationToken'],
resources: ['*'],
}));
// ECR Image Operations (scoped to our repository)
codeBuildRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
'ecr:BatchCheckLayerAvailability',
'ecr:BatchGetImage',
'ecr:GetDownloadUrlForLayer',
'ecr:PutImage',
'ecr:InitiateLayerUpload',
'ecr:UploadLayerPart',
'ecr:CompleteLayerUpload',
],
resources: [agentRepository.repositoryArn],
}));
// CloudWatch Logs
codeBuildRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
'logs:CreateLogGroup',
'logs:CreateLogStream',
'logs:PutLogEvents',
],
resources: [`arn:aws:logs:${this.region}:${this.account}:log-group:/aws/codebuild/bedrock-agentcore-*`],
}));
// S3 Access with account condition
codeBuildRole.addToPolicy(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: [
's3:GetObject',
's3:PutObject',
's3:ListBucket',
],
resources: [
sourceBucket.bucketArn,
`${sourceBucket.bucketArn}/*`,
],
conditions: {
StringEquals: {
's3:ResourceAccount': this.account,
},
},
}));
// Create CodeBuild project for building ARM64 container
const buildProject = new codebuild.Project(this, 'AgentBuildProject', {
projectName: 'bedrock-agentcore-strands-agent-builder',
description: 'Builds ARM64 container image for AgentCore runtime',
role: codeBuildRole,
environment: {
buildImage: codebuild.LinuxBuildImage.AMAZON_LINUX_2_ARM_3,
computeType: codebuild.ComputeType.SMALL,
privileged: true, // Required for Docker builds
},
source: codebuild.Source.s3({
bucket: sourceBucket,
path: 'agent-source/', // Path to extracted agent files
}),
buildSpec: codebuild.BuildSpec.fromObject({
version: '0.2',
phases: {
pre_build: {
commands: [
'echo Logging in to Amazon ECR...',
`aws ecr get-login-password --region ${this.region} | docker login --username AWS --password-stdin ${this.account}.dkr.ecr.${this.region}.amazonaws.com`,
],
},
build: {
commands: [
'echo Building Docker image...',
'docker build --platform linux/arm64 -t strands_agent:latest .',
`docker tag strands_agent:latest ${agentRepository.repositoryUri}:latest`,
],
},
post_build: {
commands: [
'echo Pushing Docker image to ECR...',
`docker push ${agentRepository.repositoryUri}:latest`,
'echo Build completed successfully',
],
},
},
}),
});
// Outputs
new cdk.CfnOutput(this, 'RepositoryUri', {
value: agentRepository.repositoryUri,
description: 'ECR Repository URI for agent container',
});
new cdk.CfnOutput(this, 'RoleArn', {
value: agentRole.roleArn,
description: 'IAM Role ARN for AgentCore Runtime',
exportName: 'AgentCoreRuntimeRoleArn',
});
new cdk.CfnOutput(this, 'SourceBucketName', {
value: sourceBucket.bucketName,
description: 'S3 bucket for CodeBuild source',
exportName: 'AgentCoreSourceBucketName',
});
new cdk.CfnOutput(this, 'BuildProjectName', {
value: buildProject.projectName,
description: 'CodeBuild project name',
exportName: 'AgentCoreBuildProjectName',
});
new cdk.CfnOutput(this, 'BuildProjectArn', {
value: buildProject.projectArn,
description: 'CodeBuild project ARN',
exportName: 'AgentCoreBuildProjectArn',
});
}
}