Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
0 replies
21 views

I want to include dynamic runtime data in CloudWatch alarms. Specifically, when my application emits metrics with contextual information, I want that context to appear in the alarm descriptions or ...
João Reis's user avatar
0 votes
0 answers
33 views

I'm a bit frustrated with AWS Amplify, what seems like a basic feature of maintaining sessions is seems to fail if the network drops. Here is my Cogntio CDK setup, the refreshTokenValidity is set to ...
Joseph Cannella's user avatar
0 votes
0 answers
39 views

I'm working on a CDK deployment. I'm trying to set up a stack that creates a ECR image which is completely build the way I want. However, I'm stuck at the part of getting the private repositories ...
Donny van Grondelle's user avatar
0 votes
0 answers
49 views

I have two AWS accounts: DNS Account: Contains my Route 53 hosted zone for example.com Email Account: Where I need to send emails using Amazon SES with the domain example.com To verify the SES email ...
João Reis's user avatar
0 votes
1 answer
57 views

I use CDK to generate a CloudFormation stack. When I run cdk synth and cdk deploy, the ECR image and the Task definition don't get updated. In order to force the update, I have to: delete the built ...
Gabriele's user avatar
  • 781
Best practices
0 votes
0 replies
42 views

We are building and deploying a few system using the AWS CDK Pipeline, mostly with dotnet Most cases we are building the deployed apps using dockerfile assets referenced in the CDK Should we run the ...
Erik Karlsson's user avatar
0 votes
0 answers
59 views

I have this api gateway in my main stack: api_gateway = _api_gw.LambdaRestApi( self, f"{construct_id}-gw-api", handler=lambda_hello, rest_api_name=f"gw-api{env_ext}"...
Ahron Gold's user avatar
1 vote
1 answer
72 views

I want to create a new secret via cdk. It seems that I don't understand it... Python code: foo = secretsmanager.Secret( self, "foo", generate_secret_string=...
saromba's user avatar
  • 522
0 votes
1 answer
64 views

I have been modifying an AWS CDK v2 stack (Python) to generate an API Gateway v2 stage with logging enabled. Sounds simple, there are countless examples on the internet, and countless agentic coding ...
Bit Fracture's user avatar
0 votes
1 answer
41 views

In an AWS Amplify backed application, I can define two data models Inventory and Order. Then Amplify generates a GraphQL API and underlying DynamoDB tables for these models. Then I can create a ...
Miguel Ferreira's user avatar
-1 votes
1 answer
87 views

I am working on migrating our Typescript application from Serverless Framework to AWS CDK. Background Our application started out as mostly just lambda functions, api gateways and some IoT resources. ...
Buttlet's user avatar
  • 307
0 votes
0 answers
56 views

I'm trying to create the APP_KEY via AWS CDK but I don't think there is a relevant Construct to do this. I tried this: APP_KEY: ECSSecret.fromSecretsManager( new Secret(...
Riza Khan's user avatar
  • 3,248
0 votes
1 answer
98 views

I'm trying to change my DynamoDB table from Provisioned to On Demand via CDK. The commented out code is what my table was provisioned with before, for autoscaling. table = new TableV2(this, props....
chinahalffull's user avatar
0 votes
0 answers
69 views

Objective: Create a lambda_layer_version permission policy so that lambda functions from remote AWS accounts in the same AWS Organization can access the lambda_layer. Problem: The Lambda_layer_version ...
Francois Harmse's user avatar
0 votes
2 answers
115 views

I have a CDK app in typescript to deploy AWS resources for a specific project. I have multiple AWS accounts for different companies. I would usually do the following before running any CDK command: ...
Phrixus's user avatar
  • 1,229
0 votes
0 answers
44 views

I'm practicing Fargate deployment so trying to setup two containers in one task definition and creating a service based on that. The problem is the deployment fails because the health checks don't ...
Riza Khan's user avatar
  • 3,248
0 votes
0 answers
41 views

I'm using AWD CDK to deploy a Fargate task. Initial deployment works great via Codepipeline, however subsequent changes to the application aren't picked up because the pipeline isn't deploying the new ...
Riza Khan's user avatar
  • 3,248
1 vote
2 answers
85 views

Following this tutorial on AWS: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html#sample-docker-running It keeps failing for me at this like: - aws ecr get-login-password --...
Riza Khan's user avatar
  • 3,248
0 votes
1 answer
153 views

I'm currently having issues with one of our projects that is using a CodePipeline. Tried to update the packages and also reverted them to their previous versions. It did pass the SynthStep, but I'm ...
undefine97's user avatar
2 votes
1 answer
207 views

I'm working with AWS CDK and have a Lambda@Edge function that needs to be updated after initial deployment. I understand that Lambda@Edge functions have replication limitations and can't be updated in ...
Toseef_Ahmed's user avatar
0 votes
2 answers
272 views

I've been trying to follow the CDK Pipelines guide to create a pipeline that deploys both the infrastructure and code for a set of Lambdas. Here's a summary of what I have: monorepo/ ├─ package.json └─...
RustyTheBoyRobot's user avatar
0 votes
0 answers
53 views

I am deploying a next app via AWS CDK using Amplify hosting. When navigating to the successfully deployed site, receive 'This .amplifyapp.com page can’t be found'. build spec is as so: buildSpec:...
Zen Biz's user avatar
0 votes
0 answers
129 views

I'm working with AWS Lambda function that serves as the backend for an API Gateway endpoint using Lambda Proxy Integration. My Lambda handler is structured like this: def lambda_handler(event, context)...
thecodingaviator's user avatar
4 votes
2 answers
97 views

I'm trying to create a glue table with a column that maps to an array of struct with a defined schema. Using the aws_glue_alpha experimental construct, definition of an array of struct is possible ...
sheva's user avatar
  • 53
0 votes
2 answers
51 views

In the v2.199.0 release notes, it says: Please check the notes for each specific module for more information. What does this refer to exactly? What is a "module" in CDK V2 and where do I ...
Shorn's user avatar
  • 22.1k
0 votes
1 answer
54 views

I've been trying to deploy and AWS CDK stack that builds a SageMaker Pipeline with Lambda step, however I keep getting "Invalid request provided: Step[xyz]: Lambda function ARN cannot be null. No ...
Schilker's user avatar
  • 505
0 votes
0 answers
44 views

I'm trying to deploy my WebApp pipeline using CDK (https://docs.aws.amazon.com/cdk/v2/guide/home.html) with credentials set up in ~/.aws/credentials and ~/.aws/config. I created a certificate in AWS ...
astro_sy's user avatar
0 votes
1 answer
55 views

I am defining an AWS Transfer SFTP connector in the CDK in Typescript. cdk deploy runs. When, however, I click on "Test Connection" in the console, I receive: Cannot access secret manager ...
bmargulies's user avatar
  • 101k
0 votes
1 answer
251 views

I am trying to host my infra using aws cdk I am using both env export and aws configure but still getting error Environment aws://xxxx/us-east-1 failed bootstrapping: _AuthenticationError: Need to ...
Arnab Chatterjee's user avatar
1 vote
1 answer
59 views

I'm working on an AWS CDK project using TypeScript and I'm trying to improve type safety for a parameter tracking system I've implemented. I have a base class that allows child stacks to export ...
finn's user avatar
  • 1,115
0 votes
0 answers
28 views

I'm trying to use Filters on a KinesisEventSourceProps to filter out JSON where Service is equal to "NotKnown": { "Meta": { "Service": "NotKnown", ...
izac33's user avatar
  • 1
2 votes
1 answer
207 views

I am using LocalStack Docker and AWS CDK v2 image and I want to hot reload Lambda functions after file saves services: backend: container_name: "${LOCALSTACK_DOCKER_NAME:-backend}" ...
Sofienne Lassoued's user avatar
0 votes
2 answers
107 views

Going through a networking course and using the CDK to setup the infrastructure. I can't seem to figure out how to add the following EC2 Instance Connect Endpoint VPC Endpoint to an EC2 Instance: My ...
Riza Khan's user avatar
  • 3,248
0 votes
0 answers
49 views

I'm creating a project that create a few recipes from a list of equipement, ingredients and restrictions. For that I'm trying to make a http request using axios but apparently nothing is being ...
Marcelo Esser's user avatar
0 votes
0 answers
56 views

I have a cdk L2 cognito.UserPool (see below). I only want email and password authentication. I want users to be able to change their email. I want their email to be verified either at sign up or upon ...
George Bentz's user avatar
0 votes
0 answers
78 views

I am deploying a Next.js website to AWS via the SST v2 framework. I want to monitor it via DataDog. Below are the contents of my sst.config.ts file. I am not getting any errors during the deployment ...
firdavs_abc's user avatar
0 votes
1 answer
43 views

I'm trying to retrieve the Access Endpoint of AWS::Transfer::WebApp during dotnet CDK deployment, because I need to pass it to the CORS policy of the associate S3 bucket, which accepts an array of ...
danwag's user avatar
  • 309
0 votes
1 answer
41 views

I am building a CDK stack using GithubActions. The package builds successfully until I add an AppSync resolver using resolver code from an asset. Weirdly, the appsync.SchemaFile.fromAsset() using the ...
George Bentz's user avatar
0 votes
0 answers
38 views

I am new to cdk and trying to create a simple pipeline from udemy course and at first its fine I even saw that the pipeline was being created and when it was almost complete i got a pipeline not found ...
jaramator's user avatar
  • 310
0 votes
1 answer
82 views

I have created the AppRunner Service and I need the default domain value so I can integrate with API gateway VPC link. There is property attrs_service_url in CfnService but when I use that it will ...
Yougeshwar Khatri's user avatar
0 votes
0 answers
61 views

How to make codebuild role in aws account make changes/access KMS keys in another aws account for a lambda function? We are facing below error message when we update lambda function in one aws account ...
devops-admin's user avatar
  • 2,043
-1 votes
1 answer
175 views

How deploy aws lambda function in one aws account using ecr image from another aws account through cdk typescript? Below is our cdk code in typescript in different files. # bin/ApisecDataScienceInfra....
devops-admin's user avatar
  • 2,043
0 votes
0 answers
64 views

I have an angular app served from an S3 bucket (with CloudFront). This is deployed using CDK, specifically via a s3Deployment.BucketDeployment. Each time the app is deployed the index.html file is ...
brianb08's user avatar
0 votes
1 answer
81 views

So, I am trying to set up a set of fargate services that need to communicate with each other. One is available on the interwebs via a load balancer. I am currently using a PublicDnsNamespace and ...
bytesnz's user avatar
  • 441
0 votes
0 answers
132 views

Question: I'm using AWS CDK (v2) with TypeScript to configure Lambda functions using values stored in SSM String parameters with JSON format. While the parameter stores valid JSON, I'm having trouble ...
Emmanuel Oliveira's user avatar
0 votes
0 answers
39 views

I'm trying to return a header from a lambda, it's returned as "<https://example.com/ab?offset=0&limit=0>; rel=\"next\"" instead of <https://example.com/ab?offset=0&...
Rony Tesler's user avatar
  • 1,396
0 votes
0 answers
196 views

I'm using Amplify Gen.2 with custom CDKs to deploy my AWS backend for my iOS app written in Swift. One of the CDK constructs implements the AWS AppConfig service, that's also where I'm setting the ...
Marco Boerner's user avatar
0 votes
0 answers
39 views

I have an existing aws account with infrastructure that has already been deployed via CDK with a codepipeline. The codepipeline is specifying which stacks to deploy via the addStage function of ...
user2683809's user avatar
1 vote
0 answers
84 views

How should one use the HttpAlbIntegration for HttpApi on API Gateway v2 library? At current, my application does indeed build and deploy. However, when I query requests.get(endpoint/ping) the response ...
jbuddy_13's user avatar
  • 1,238
0 votes
1 answer
128 views

I'm trying to configure SNS SMS Attributes (see image below) using AWS CDK. However, I can't seem to find any documentation or examples on how to set these preferences using CDK (Typescript). The ...
Kevin's user avatar
  • 1,154

1
2 3 4 5
79