aws-cdk-local icon indicating copy to clipboard operation
aws-cdk-local copied to clipboard

Thin wrapper script for using the AWS CDK CLI with LocalStack

Results 21 aws-cdk-local issues
Sort by recently updated
recently updated
newest added

When deploying my RDS stack I have it put it's hostname into an SSM Parameter to be used by Lambda functions later. This doesn't seem to work when configuring `LOCALSTACK_HOSTNAME`,...

invalid
awaiting-response

Seems the new CDK version isn't compatible with Node 12 anymore syntaxwise (using ES6 syntax)

[Using](url) the following code, I expect to see 3 subnets create - a private with NAT, isolated, and a public. ```ts const vpc = new ec2.Vpc(this, `${id}CoreVpc`, { maxAzs: 1,...

should-be-fixed
awaiting-response

When running localstack with docker, my SQS Queue's are configured so that their URL's are meant to look like: ``` $ awslocal sqs create-queue --queue-name test { "QueueUrl": "http://172.26.0.2:4566/000000000000/test" }...

needs-triaging

Seems like CDK is caching values in `cdk.context.json` that are not always updated on `cdk bootstrap` or `cdk deploy`. For example, just ran into a case where `cdk.context.json` contained cached...

awaiting-response

It does not work with cdk installed via homebrew The required libraries should be fetched after determining the CDK installation, as people could have not installed it with npm. You...

bug

When doing `cdklocal deploy --no-fail-on-empty-changeset` it _appears_ that the flag is not being passed along to the underlying call to the `cdk deploy` command.

cannot-reproduce
awaiting-response

# ENV CDK-2.97.0 CDK-Python Python 3.10.12 # Problem CDK refuses to deploy an API GW and attached lambda. I cannot decipher from the error or the logs what is causing...

Can you add `aws-cdk` as a dependency in package.json? In some environments, especially with `pnp` and multiple yarn workspaces, it causes problems if you can't install `aws-cdk` globally.

wontfix
awaiting-response

The following snippet behaves differently between local stack and aws: ``` topic.addSubscription( new SqsSubscription(queue, { filterPolicyWithMessageBody: { eventType: sns.FilterOrPolicy.filter( sns.SubscriptionFilter.stringFilter({ allowlist: [...listener.getEventTypes()], }) ), }, }) ``` sns get-subscription-attributes: In...