Skip to content

This module is intended to be used for configuring an AWS network.

License

Notifications You must be signed in to change notification settings

Geartrixy/terraform-aws-network

 
 

Repository files navigation

Description

This module is intended to be used for configuring an AWS network.

In detail, a VPC with two public and two private subnets will be created. Additionally, an Internet Gateway with an Elastic IP will be created and routing tables will be configured (if create_nat is set to true).

In the end you will have a working VPC in which you are able to create private and public (internet faced) resources.

Usage

Create a new file called my-project.tf and copy the following content in it:

module "region" {
  source      = "git::https://github.com/zoitech/terraform-aws-network.git"
  vpc_name    = "${var.name}"
  vpc_network = "10.161.32.0/21"
  aws_region  = "${var.aws_region}"
  create_nat  = true
}

Authors

This module is maintained by Zoi.

License

Licensed under the MIT License. Have a look at the file LICENSE for more information.

About

This module is intended to be used for configuring an AWS network.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HCL 100.0%