-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[aws-ec2] Add way to filter VPC subnets by tags #10366
Comments
If your issue is that types are incorrectly recognized, you can use the https://docs.aws.amazon.com/cdk/api/latest/docs/aws-ec2-readme.html#importing-an-existing-vpc A combination of |
That solution primarily works for subnets managed by CDK. I have a situation where the VPC was created by others. And now I want to filter by the name Tag. I believe this issue is still relevant. I can work a fix? |
Any update on this? |
I am also interested in this. I have vpc created using terraform with 2 private subnets and 2 db subnets. I am looking for a way to filter out db subnets out of all matched subnets with type |
The SubnetFilters only operate on the |
Here is the fix which works for me. Firstly, Add a new tag to each subnet group as below. Tag
For Private subnets
For DB subnets
Please follow the same for other subnets groups as well Secondly, Use use above new subnet tag
Thirdly, Add use above new subnet tag
Referred documents Note: |
is there any progress on this issue? It would be super helpful to have a feature to select subnet resources based on tags. I am having a similar issue with this, currently, I am trying to create a Sagemaker domain that requires a list of subnet_ids, and I am trying to derive the subnets based on the tag value, but I failed to find a solution till now. |
@HCharlie Our workaround solution is using AWS SDK. We filter the subnets by the specific tags and export those IDs in SDK. After that, we use them with |
This issue has received a significant amount of attention so we are automatically upgrading its priority. A member of the community will see the re-prioritization and provide an update on the issue. |
Perhaps the simplest solution here is just supporting wildcards / regex in the subnetGroupName property of vpc.selectSubnets(). If you then set the subnetGroupNameTag to "Name" in your VPC lookup, it would then make a group for each subnet. Implementation might be easier said that done. |
A way to filter VPC subnets by tags. This is important to allow proper setup of systems with the CDK that have not been built with the CDK. No all systems are built with the best practices as these tend the change as the years go on anyways. Moving from Terraform, the VPC's are not setup according to AWS standards (compared to the CDK) and this has some serious consequences as to "fix" the issue would require rebuilding system. That's not ideal or really necessary if we had some control over which subnets to use VIA a filter.
Use Case
I am running into issues with codepipeline due to VPC subnets not being able to be filtered by a tag.
I am coming from Terraform, having built most of our VPCs with: https://registry.terraform.io/modules/terraform-aws-modules/vpc/aws/2.25.0
This creates the subnets like:
The issues I am having is that the
db
andelasticache
subnets seem to be set to private. This leaves me with issues in the pipeline as this will build and deploy ECS to the DB and the cache subnets, which will always fail. These subnets behave as isolated but they are not identified as isolated.It's unrealistic to expect replacing all existing PROD VPCs with the new (proper) VPC using CDK. Especially since I cannot truly import like we can in Terraform. This leaves me in a state where I cannot use the CDK for codepipelines on any existing system. As the builds and deploys will work, at best. half the time.
What we need is a way to filter the subnets by the tag name, or any other tag for more control.
Proposed Solution
I am new to the CDK but perhaps a
filterBy(tag, regexPattern|string)
to the VPC for subnets.What I would like to do is use it like:
I tried to see if I could build this myself but I don't see the metric possible to filter by. Perhaps a CloudFormation limitation?
This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: