Nick Kang

Results 11 issues of Nick Kang

It'd be useful to see the console log of the topic and queue messages.

Thank you for the library. It's so nice being able to have an end-to-end strongly typed workflow. I'd like to suggest an `@comment` (similar to Postgres comments https://www.postgresql.org/docs/current/sql-comment.html) annotation that...

Exposing an `architecture` variable will allow you to specify `arm64` AMIs. In `data "aws_ami"...` ```terraform filter { name = "architecture" values = [var.architecture] } ``` In `variables.tf`... ```terraform variable "architecture"...

Add a generic type to the `Tag` class to make it more type-safe when specifying attributes. ```typescript // tags.ts export default class Tag { readonly $$mdtype = 'Tag' as const;...

**What component (if applicable)** - URL for category: https://pro.chakra-ui.com/components/application/section-headers - Component name: Section header with tabs **Describe the bug** X-axis overflow on mobile view. Maybe change tabs to a dropdown...

bug

I'd like to confirm if Bottlerocket supports ECS Service Connect. I don't see any mention of it anywhere. When I try running a task with Service Connect, the task get's...

type/enhancement
area/ecs
status/icebox
area/networking

I'd like to suggest adding the ability to provide job configurations to synth, publish, and default stages. This would be similar to the `synthCodeBuildDefaults`, `codeBuildDefaults`, `assetPublishingCodeBuildDefaults` properties in `pipelines.CodePipeline`(https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html#synthcodebuilddefaults). The...

I'd like to be able to pass my own pg client to `PGVectorStore.ts` instead of a connection string because we use RDS IAM Authentication. This requires a dynamically generated expiring...

enhancement

This PR adds support for VpcV2 https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_aws-ec2-alpha.VpcV2.html. VpcV2 does not support the NatProvider class, so you actually to have manually call the `.configureNat()` method. It's not ready to merge yet...