This repository contains terraform code to deploy a sample AWS Hub and Spoke architecture with an Inspection VPC using AWS Network Firewall. The resources deployed and the architectural pattern they follow is purely for demonstration/testing purposes.
- An AWS account with an IAM user with the appropriate permissions
- Terraform installed
- Writing DRY (Do No Repeat Yourself) code using a modular design pattern
- Clone the repository
- Edit the variables.tf file in the project root directory
The variables.tf file contains the variables that are used to configure the Terraform code.
Note EC2 instances, VPC endpoints, and AWS Network Firewall endpoints will be deployed in all the Availability Zones configured for each VPC. Keep this in mind when testing this environment from a cost perspective - for production environments, we recommend the use of at least 2 AZs for high-availability.
The AWS Network Firewall Policy is defined in the policy.tf file in the network_firewall module directory. By default:
- All the SSH and RDP traffic is blocked by the Stateless engine.
- The Stateful engine follows Strict Rule Ordering, blocking all the traffic by default. Two rule groups allow ICMP traffic (between East/West traffic only), and HTTPS traffic to any *.amazon.com domain.
This project configures both the alert and flow logs to respective AWS Cloudwatch Log Groups (both for the VPC Flow logs and AWS Network Firewall logs). In VPC Flow logs, you can also use Amazon S3. In Network Firewall, you can also use Amazon S3, or Amazon Kinesis Firehose.
To follow best practices, all the logs are encrypted at rest using AWS KMS. The KMS key (alongside the IAM roles needed) is created using the iam_kms module.
Remember to clean up after your work is complete. You can do that by doing terraform destroy
.
Note that this command will delete all the resources previously created by Terraform.
See CONTRIBUTING for more information.
This library is licensed under the MIT-0 License. See the LICENSE file.
Name | Version |
---|---|
terraform | >= 1.3.0 |
aws | >= 3.73.0 |
awscc | >= 0.15.0 |
Name | Version |
---|---|
aws | 4.36.1 |
Name | Source | Version |
---|---|---|
aws_network_firewall | aws-ia/networkfirewall/aws | 0.0.2 |
compute | ./modules/compute | n/a |
iam_kms | ./modules/iam_kms | n/a |
inspection_vpc | aws-ia/vpc/aws | = 3.0.1 |
spoke_vpcs | aws-ia/vpc/aws | = 3.0.1 |
vpc_endpoints | ./modules/endpoints | n/a |
Name | Description | Type | Default | Required |
---|---|---|---|---|
inspection_vpc | Inspection VPC definition. | any |
{ |
no |
project_name | Name of the project. | string |
"aws-hub-and-spoke-demo" |
no |
region | AWS Region. | string |
"eu-west-1" |
no |
spoke_vpcs | Spoke VPCs definition. | any |
{ |
no |
Name | Description |
---|---|
instances | EC2 instances created. |
network_firewall | AWS Network Firewall ID. |
transit_gateway_id | AWS Transit Gateway ID. |
transit_gateway_route_tables | Transit Gateway Route Table. |
vpc_endpoints | SSM VPC endpoints created. |
vpcs | VPCs created. |