/terraform-registry-aws-networking

All network-related 🌍 stuffs made in IAC, in AWS ☁️

Primary LanguageHCLOtherNOASSERTION

logo
Terraform AWS ☁️ Networking 🌎

An easy to understand, opinionated terraform composable set of modules for managing Networking and Traffic in for AWS ☁️.


auto-release Run pre-commit Terraform Check Terraform Plan on PR

Table of Contents

  1. About The Module
  2. Module documentation
    1. Capabilities
    2. Getting Started
    3. Roadmap
    4. Module standard structure
  3. Developer Experience
    1. Configuring AWS credentials for local development
    2. Running common development actions
    3. Running tests
  4. Contributions
  5. License
  6. Contact

About The Module

This module encapsulate a set of modules that configure, and provision accounts-related resources on AWS.


Module documentation

The documentation is automatically generated by terraform-docs, and it's available in the module's README.md file.

Capabilities

Module Status Description
aws-vpc Stable βœ… Create a full managed Virtual Private Network
aws-security-group Stable βœ… Create security groups, with flexible rules, and OOO rules
aws-alb Stable βœ… Create an stand-alone application load balancer
aws-target-groups Stable βœ… Create one or many target groups. Currently support ALB
aws-alb-listeners Stable βœ… Create a set of listeners, that applies for an existing ALB and specified target group
aws-alb-listeners-rules Stable βœ… Create a set of rules to apply on top of ALB listeners.
aws-acm-certificates Stable βœ… Provision one or many AWS Certificates. Includes optionally the validation capability.
aws-route53-zone Stable βœ… Provision a DNS hosted zone.
aws-route53-dns-records Stable βœ… Provision a DNS record of different types. Currently supported, type A.
target-group-attacher Stable βœ… Handy module that attach a backend with a target group E.g.: ALB).
lookup-data Stable βœ… Module that lookup for network-related data.
security-group-rules Stable βœ… Module that create security group rules on top of an existing security group.

Getting Started

Check the example recipes πŸ₯— here

Module standard structure

The module's relevant components, structure and "skeleton" is described below:

β”œβ”€β”€ README.md
β”œβ”€β”€ TaskFile.yml
β”œβ”€β”€ docs
β”‚   └── contribution_guidelines.md
β”œβ”€β”€ examples
β”‚   β”œβ”€β”€ README.md
β”‚   β”œβ”€β”€ TaskFile.yml
β”‚   └── default
β”‚       └── basic
β”‚           β”œβ”€β”€ README.md
β”‚           β”œβ”€β”€ config
β”‚           β”‚   └── fixtures.tfvars
β”‚           β”œβ”€β”€ main.tf
β”‚           β”œβ”€β”€ providers.tf
β”‚           β”œβ”€β”€ variables.tf
β”‚           └── versions.tf
β”œβ”€β”€ modules
β”‚   β”œβ”€β”€ TaskFile.yml
β”‚   └── default
β”‚       β”œβ”€β”€ README.md
β”‚       β”œβ”€β”€ data.tf
β”‚       β”œβ”€β”€ locals.tf
β”‚       β”œβ”€β”€ main.tf
β”‚       β”œβ”€β”€ outputs.tf
β”‚       β”œβ”€β”€ variables.tf
β”‚       └── versions.tf
β”œβ”€β”€ pre-commit-config-githubactions.yaml
└── tests
    β”œβ”€β”€ README.md
    β”œβ”€β”€ TaskFile.yml
    └── default
        β”œβ”€β”€ integration
        β”‚   β”œβ”€β”€ default_basic_integration_test.go
        β”‚   β”œβ”€β”€ go.mod
        β”‚   β”œβ”€β”€ go.sum
        β”‚   └── target
        β”‚       └── basic
        β”‚           └── main.tf
        └── unit
            β”œβ”€β”€ default_basic_unit_test.go
            β”œβ”€β”€ go.mod
            β”œβ”€β”€ go.sum
            └── target
                └── basic
                    └── main.tf

Where:

  • ⚑️Modules: refers to the actual module's directory. Where the .tf files reside. Each subdirectory is a module.
  • ⚑️Examples: refers to the examples directory, where the examples recipes lives. These are also used for testing the infrastructure using Terratest. For its specific documentation, query this link
  • ⚑️Tests: refers to the tests directory, where the tests recipes lives. These are also used for testing the infrastructure using Terratest. For its specific documentation, query this link

Developer Experience

Some tools that this repo uses:

  • 🧰 Terraform β€” strongly recommended the latest versions
  • 🧰 Go β€” justified mostly for Terratest
  • 🧰 TaskFile β€” for the automation of the tasks.

NOTE: For automation during the development process, I use precommit, which is a framework for managing and maintaining multi-language pre-commit hooks. It's a great tool, and I highly recommend it. All the hooks required are installed by this script. It's recommended though to run it through the TaskFile task pre-commit-init.

To initialize your pre-commit configuration, and ensure all the hooks are installed, run the following command:

task pre-commit-init

To run these hooks against all the files, you can use the following Task command:

task pre-commit

Configuring AWS credentials for local development

For sure you've seen that in the main Taskfile, there's a task called gen-env-aws. That task aims to generate a proper .env.<env>.aws dotEnv file which is used by the TaskFile.yml tasks. If you have a proper AWS credentials file, you can run the following command:

task gen-env-aws

In simple terms, that tasks (which runs a shell script) scan your pre-existing AWS profiles, and generate the .env.<env>.aws file for you. When it's generated, running a task that wraps a terraform command, will use the generated .env.<env>.aws file to set the proper AWS credentials. For example:

# dev refers to the environment selected, which's how the file is also named. E.g.: env.dev.aws
ENV=dev task module-plan

Running common actions for local development

Run unit tests (wrapping Terratest):

# If you want to list the available tasks.
task list
# Run the unit tests.
task test-unit

Run integration tests β€” if exists (wrapping Terratest):

# If you want to list the available tasks.
task list
# Run the unit tests.
task test-integration

Run all the configured pre-commit hooks (forcing them to run on all files):

task pre-commit

Run a vanilla terraform plan over the example/basic (recipe) example:

# No arguments are required, since it's using its defaults: example as the module's name, and basic as its recipe's name.
task recipe-plan

Tests

See the detailed documentation here.


Module Versioning

This Module follows the principles of Semantic Versioning (SemVer).

Given a version number MAJOR.MINOR.PATCH, we increment the:

  1. MAJOR version when we make incompatible changes,
  2. MINOR version when we add functionality in a backwards compatible manner, and
  3. PATCH version when we make backwards compatible bug fixes.

Backwards compatibility in 0.0.z and 0.y.z version

  • Backwards compatibility in versions 0.0.z is not guaranteed when z is increased. (Initial development)
  • Backwards compatibility in versions 0.y.z is not guaranteed when y is increased. (Pre-release)

Contributing

Contributions are always encouraged and welcome! ❀️. For the process of accepting changes, please refer to the CONTRIBUTING.md file, and for a more detailed explanation, please refer to this guideline here.

License

license

This module is licensed under the Apache License Version 2.0, January 2004. Please see LICENSE for full details.

Contact

made/with ❀️ 🀟