An open API service indexing awesome lists of open source software.

https://github.com/chiraag-kakar/terraform-aws-mod_reuse

This module helps in building reusable infrastructure in AWS by aggregating vpc, subnets, route, gateway, instances, security groups with ease.
https://github.com/chiraag-kakar/terraform-aws-mod_reuse

aws aws-ec2 gateway routes security-group subnet terraform terraform-module vpc

Last synced: about 2 months ago
JSON representation

This module helps in building reusable infrastructure in AWS by aggregating vpc, subnets, route, gateway, instances, security groups with ease.

Awesome Lists containing this project

README

        

This module helps in building reusable infrastructure in AWS by aggregating vpc, subnets, route, gateway, instances, security groups with ease.

## Authentication :

Note : Make sure you have created the following "provider.tf" and include the following values (If the resources are accessed by assuming role)

```
provider "aws" {
region = "ap-southeast-1"
access_key = "XXXXXXXXXXXXXXXXXXXX"
secret_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

assume_role {
role_arn = "arn:aws:iam::XXXXXXXXXXXX:role/terraform"
external_id = "role name"
}
}
```

## Example Usage :

```
```