Skip to content
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

Adding "intra subnets" as a class #135

Merged
merged 4 commits into from
Jun 4, 2018

Conversation

madsenwattiq
Copy link
Contributor

For situations where Lambda functions are used (e.g., with API Gateway) inside the VPC, the Lambdas need to be configured with subnet IDs from which they can allocate ENIs. The PR simply adds subnets across the AZs for that.

@antonbabenko
Copy link
Member

Hi Mark,

This is exactly when private subnet should be used for. Also, private subnets have route table associated.

Let me know if I am missing something here. If not, let's close this PR.

@madsenwattiq
Copy link
Contributor Author

madsenwattiq commented Jun 1, 2018

Happy to not complicate things, but I'm wondering how to configure two classes of private subnets when I configure the VPC. I want a group of subnets of one size for Kubernetes worker nodes, and these need access to NAT gateway and thereby, to the external internet. Then I need a set of subnets for Lambda ENI allocation (for API Gateway, basically), and those subnets only need to be able to reach other VPC subnets, not the external internet. I'd like the two classes of subnets to have different tags so that other systems can query by tag and find all my lambda, or all my k8s worker subnets, across VPCs and regions, etc etc. You get the picture. How do I use "private_subnet" twice, basically, but still keep the terraform.tfvars definition as simple as possible?

@antonbabenko
Copy link
Member

Right, thanks for the clarification. This module currently does not support such duality, there is no way to create private subnets with NAT and without NAT in one go. I think we should add this.

The naming (especially when it is +32C in the room) gets very tricky. Mainly, how to name private subnet which does not have NAT. I forgot the scientific term. I think it is called something like ephemeral private subnet, but probably not. LAN? Intranet? Lambda is too specific and it is just a name of the service.

When name is there we should duplicate half of the code which takes care of private subnet resources (like routing tables, associations, etc). If you can do this, PR is welcome. If not, let us know and me or someone else may help with this.

Thanks again for opening this issue!

@antonbabenko antonbabenko reopened this Jun 1, 2018
@madsenwattiq
Copy link
Contributor Author

I agree, lambda is too specific, I can envision placing other backend systems in subnets of this type as well. I'll work on it a bit, as you say duplicating the half of the code that handles the needed resources, leaving out NAT. If I need help, I'll ask!

@antonbabenko
Copy link
Member

Regarding namings... RFC1918 says:

Hosts within enterprises that use IP can be partitioned into three categories:

      Category 1: hosts that do not require access to hosts in other
                  enterprises or the Internet at large; hosts within
                  this category may use IP addresses that are
                  unambiguous within an enterprise, but may be
                  ambiguous between enterprises.

      Category 2: hosts that need access to a limited set of outside
                  services (e.g., E-mail, FTP, netnews, remote login)
                  which can be handled by mediating gateways (e.g.,
                  application layer gateways). For many hosts in this
                  category an unrestricted external access (provided
                  via IP connectivity) may be unnecessary and even
                  undesirable for privacy/security reasons. Just like
                  hosts within the first category, such hosts may use
                  IP addresses that are unambiguous within an
                  enterprise, but may be ambiguous between
                  enterprises.

      Category 3: hosts that need network layer access outside the
                  enterprise (provided via IP connectivity); hosts in
                  the last category require IP addresses that are
                  globally unambiguous.

   We will refer to the hosts in the first and second categories as
   "private".  We will refer to the hosts in the third category as
   "public".

So, there is no official name for Category 1. After some reading and talking to other people in couple chats I'd like to call it intra_subnets.

@madsenwattiq madsenwattiq changed the title Adding "lambda subnets" as a class Adding "infra subnets" as a class Jun 4, 2018
@madsenwattiq
Copy link
Contributor Author

The name makes sense to me. I've been using this over the weekend to create some test VPCs for a project, and I end up with private subnets that have route table entries, but no NAT gateway entries, which is what we want for Category 1 RFC1918 networks. See what you think.

Copy link
Member

@antonbabenko antonbabenko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks pretty good. Please update the complete example and probably it is time to describe features in a README.md :)

main.tf Outdated
#####################################################
# infra subnets - private subnet with no NAT gateway
#####################################################
resource "aws_subnet" "infra" {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be intra, not infra

@madsenwattiq
Copy link
Contributor Author

There you go - docs and the example, changed "infra" to "intra", sorry about that - I read it wrong! Thanks for your help.

@antonbabenko
Copy link
Member

Merging, great work!

@antonbabenko antonbabenko merged commit d1a4990 into terraform-aws-modules:master Jun 4, 2018
@antonbabenko antonbabenko changed the title Adding "infra subnets" as a class Adding "intra subnets" as a class Jun 4, 2018
@antonbabenko
Copy link
Member

9ced5e9 - I have just run the complete example, and added few important missing resources. In particular intra route table and assign it to intra subnets.

Please let me know if you see something wrong in this commit. Also, v1.33.0 has been released.

@github-actions
Copy link

github-actions bot commented Nov 5, 2022

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 5, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants