-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CCL-859/central ingress modules for ALB and NLB (#190)
* adding central-ingress modules for alb and nlb * adding central-ingress modules for alb and nlb * updated ssl_policy * renamed the modules * adding terraform-docs * adding terraform-docs * adding terraform-docs * updated README.md * updated README.md * updated README.md * updated README.md * updated README.md * updated README.md * updated README.md
- Loading branch information
Showing
10 changed files
with
630 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<!-- BEGIN_TF_DOCS --> | ||
# Terraform Module - ALB | ||
|
||
This module provisions resources for ... ALB | ||
|
||
Example usage: terragrunt.hcl | ||
|
||
```hcl | ||
inputs = { | ||
name = "cc-central-ingress-alb" | ||
prefix = "cc-central-ingress-alb" | ||
load_balancer_type = "application" | ||
load_balancer_internal = false | ||
enable_deletion_protection = true | ||
vpc_id = "vpc-example" | ||
subnets = ["subnet-1", "subnet-2", "subnet-3"] # subnets from vpc | ||
certificate_arn = "arn:aws:acm:eu-west-2:<account-id>:certificate/example_cert" | ||
access_logs_bucket = "example-alb-accesslogs-bucket" | ||
tg_port = "443" | ||
tg_protocol = "HTTPS" | ||
target_type = "ip" # allowed values are: ip or instance or alb or lambda | ||
nlb_ips = local.config.tenant.canary.dev.nlb_ips | ||
ingress_rules = [ | ||
{ | ||
from_port = 80 | ||
to_port = 80 | ||
protocol = "tcp" | ||
cidr_blocks = ["0.0.0.0/0"] | ||
description = "Allow HTTP traffic" | ||
}, | ||
{ | ||
from_port = 443 | ||
to_port = 443 | ||
protocol = "tcp" | ||
cidr_blocks = ["0.0.0.0/0"] | ||
description = "Allow HTTPS traffic" | ||
}, | ||
] | ||
egress_rules = [ | ||
{ | ||
from_port = 0 | ||
to_port = 0 | ||
protocol = "-1" # All traffic | ||
cidr_blocks = ["0.0.0.0/0"] | ||
description = "Allow all outbound traffic" | ||
}, | ||
] | ||
} | ||
``` | ||
## Providers | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a | | ||
## Requirements | ||
|
||
No requirements. | ||
## Resources | ||
|
||
| Name | Type | | ||
|------|------| | ||
| [aws_lb.lb](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb) | resource | | ||
| [aws_lb_listener.https](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_listener) | resource | | ||
| [aws_lb_target_group.lb_target_group](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group) | resource | | ||
| [aws_lb_target_group_attachment.lb_target_group_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group_attachment) | resource | | ||
| [aws_security_group.sg](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group) | resource | | ||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| <a name="input_access_logs_bucket"></a> [access\_logs\_bucket](#input\_access\_logs\_bucket) | S3 bucket for NLB access logs | `string` | n/a | yes | | ||
| <a name="input_certificate_arn"></a> [certificate\_arn](#input\_certificate\_arn) | ARN of the SSL certificate for HTTPS listener | `string` | n/a | yes | | ||
| <a name="input_egress_rules"></a> [egress\_rules](#input\_egress\_rules) | A list of egress rules | <pre>list(object({<br/> from_port = number<br/> to_port = number<br/> protocol = string<br/> cidr_blocks = list(string)<br/> description = string<br/> }))</pre> | n/a | yes | | ||
| <a name="input_enable_deletion_protection"></a> [enable\_deletion\_protection](#input\_enable\_deletion\_protection) | enable\_deletion\_protection true or false | `string` | n/a | yes | | ||
| <a name="input_ingress_rules"></a> [ingress\_rules](#input\_ingress\_rules) | A list of ingress rules | <pre>list(object({<br/> from_port = number<br/> to_port = number<br/> protocol = string<br/> cidr_blocks = list(string)<br/> description = string<br/> }))</pre> | n/a | yes | | ||
| <a name="input_load_balancer_internal"></a> [load\_balancer\_internal](#input\_load\_balancer\_internal) | load\_balancer\_internal - true or false | `string` | n/a | yes | | ||
| <a name="input_load_balancer_type"></a> [load\_balancer\_type](#input\_load\_balancer\_type) | load\_balancer\_type - network or application | `string` | n/a | yes | | ||
| <a name="input_name"></a> [name](#input\_name) | Name of the resource/component | `string` | n/a | yes | | ||
| <a name="input_nlb_ips"></a> [nlb\_ips](#input\_nlb\_ips) | Map of IP addresses to availability zones for target group attachment | `map(string)` | n/a | yes | | ||
| <a name="input_prefix"></a> [prefix](#input\_prefix) | prefix for the resource/component | `string` | n/a | yes | | ||
| <a name="input_subnets"></a> [subnets](#input\_subnets) | Subnets where NLB will be deployed | `list(string)` | n/a | yes | | ||
| <a name="input_target_type"></a> [target\_type](#input\_target\_type) | Allowed values: ip or instance or alb | `string` | n/a | yes | | ||
| <a name="input_tg_port"></a> [tg\_port](#input\_tg\_port) | target group port | `string` | n/a | yes | | ||
| <a name="input_tg_protocol"></a> [tg\_protocol](#input\_tg\_protocol) | target group protocol | `string` | n/a | yes | | ||
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | VPC ID where NLB will be deployed | `string` | n/a | yes | | ||
## Outputs | ||
|
||
| Name | Description | | ||
|------|-------------| | ||
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | The DNS name of the LB | | ||
| <a name="output_alb_security_group_id"></a> [alb\_security\_group\_id](#output\_alb\_security\_group\_id) | n/a | | ||
|
||
|
||
<!-- END_TF_DOCS --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
resource "aws_lb" "lb" { | ||
name = var.name | ||
internal = var.load_balancer_internal | ||
load_balancer_type = var.load_balancer_type | ||
subnets = var.subnets | ||
security_groups = [aws_security_group.sg.id] | ||
enable_cross_zone_load_balancing = true | ||
enable_deletion_protection = true | ||
enable_http2 = false | ||
|
||
# access_logs { | ||
# bucket = var.access_logs_bucket | ||
# enabled = true | ||
# } | ||
|
||
tags = { | ||
Name = var.name | ||
} | ||
} | ||
|
||
resource "aws_lb_listener" "https" { | ||
load_balancer_arn = aws_lb.lb.arn | ||
port = 443 | ||
protocol = "HTTPS" | ||
|
||
ssl_policy = "ELBSecurityPolicy-TLS-1-2-2017-01" | ||
certificate_arn = var.certificate_arn | ||
|
||
default_action { | ||
type = "forward" | ||
target_group_arn = aws_lb_target_group.lb_target_group.arn | ||
} | ||
} | ||
|
||
resource "aws_lb_target_group" "lb_target_group" { | ||
name = "${var.prefix}-tg" # name can't be longer than 32 chars | ||
port = var.tg_port | ||
protocol = var.tg_protocol | ||
vpc_id = var.vpc_id | ||
target_type = var.target_type | ||
|
||
health_check { | ||
protocol = "HTTPS" | ||
healthy_threshold = 3 | ||
unhealthy_threshold = 3 | ||
timeout = 10 | ||
interval = 30 | ||
} | ||
|
||
tags = { | ||
Name = var.name | ||
} | ||
} | ||
|
||
|
||
# Target Group Attachment for IP targets | ||
resource "aws_lb_target_group_attachment" "lb_target_group_attachment" { | ||
for_each = var.target_type == "ip" ? var.nlb_ips : {} | ||
|
||
target_group_arn = aws_lb_target_group.lb_target_group.arn | ||
target_id = each.key # each.key is the IP address | ||
port = var.tg_port | ||
availability_zone = each.value # each.value is the availability zone | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Outputs | ||
|
||
output "alb_dns_name" { | ||
description = "The DNS name of the LB" | ||
value = aws_lb.lb.dns_name | ||
} | ||
|
||
output "alb_security_group_id" { | ||
value = aws_security_group.sg.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
resource "aws_security_group" "sg" { | ||
name = "${var.name}-sg" | ||
description = "SG for ${var.name}" | ||
vpc_id = var.vpc_id | ||
|
||
# Ingress rules | ||
dynamic "ingress" { | ||
for_each = var.ingress_rules | ||
content { | ||
from_port = ingress.value.from_port | ||
to_port = ingress.value.to_port | ||
protocol = ingress.value.protocol | ||
cidr_blocks = ingress.value.cidr_blocks | ||
description = ingress.value.description | ||
} | ||
} | ||
|
||
# Egress rules | ||
dynamic "egress" { | ||
for_each = var.egress_rules | ||
content { | ||
from_port = egress.value.from_port | ||
to_port = egress.value.to_port | ||
protocol = egress.value.protocol | ||
cidr_blocks = egress.value.cidr_blocks | ||
description = egress.value.description | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Load Balancer related | ||
|
||
variable "vpc_id" { | ||
type = string | ||
description = "VPC ID where NLB will be deployed" | ||
} | ||
|
||
variable "subnets" { | ||
type = list(string) | ||
description = "Subnets where NLB will be deployed" | ||
} | ||
|
||
variable "certificate_arn" { | ||
type = string | ||
description = "ARN of the SSL certificate for HTTPS listener" | ||
} | ||
|
||
variable "target_type" { | ||
type = string | ||
description = "Allowed values: ip or instance or alb" | ||
} | ||
|
||
variable "tg_port" { | ||
type = string | ||
description = "target group port" | ||
} | ||
|
||
variable "tg_protocol" { | ||
type = string | ||
description = "target group protocol" | ||
} | ||
|
||
variable "access_logs_bucket" { | ||
type = string | ||
description = "S3 bucket for NLB access logs" | ||
} | ||
|
||
variable "enable_deletion_protection" { | ||
type = string | ||
description = "enable_deletion_protection true or false" | ||
} | ||
|
||
variable "load_balancer_type" { | ||
type = string | ||
description = "load_balancer_type - network or application" | ||
} | ||
|
||
variable "load_balancer_internal" { | ||
type = string | ||
description = "load_balancer_internal - true or false" | ||
} | ||
|
||
variable "name" { | ||
type = string | ||
description = "Name of the resource/component" | ||
} | ||
|
||
variable "prefix" { | ||
type = string | ||
description = "prefix for the resource/component" | ||
} | ||
|
||
variable "nlb_ips" { | ||
description = "Map of IP addresses to availability zones for target group attachment" | ||
type = map(string) | ||
# Example: | ||
# nlb_ips = { | ||
# "10.0.1.10" = "eu-west-2a", | ||
# "10.0.2.10" = "eu-west-2b" | ||
# } | ||
} | ||
|
||
# SG related | ||
|
||
variable "ingress_rules" { | ||
description = "A list of ingress rules" | ||
type = list(object({ | ||
from_port = number | ||
to_port = number | ||
protocol = string | ||
cidr_blocks = list(string) | ||
description = string | ||
})) | ||
} | ||
|
||
variable "egress_rules" { | ||
description = "A list of egress rules" | ||
type = list(object({ | ||
from_port = number | ||
to_port = number | ||
protocol = string | ||
cidr_blocks = list(string) | ||
description = string | ||
})) | ||
} |
Oops, something went wrong.