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.
- Host: GitHub
- URL: https://github.com/chiraag-kakar/terraform-aws-mod_reuse
- Owner: chiraag-kakar
- Created: 2022-02-28T19:11:43.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-01T10:36:21.000Z (about 3 years ago)
- Last Synced: 2025-02-09T19:43:21.263Z (3 months ago)
- Topics: aws, aws-ec2, gateway, routes, security-group, subnet, terraform, terraform-module, vpc
- Language: HCL
- Homepage: https://registry.terraform.io/modules/chiraag-kakar/mod_reuse/aws/latest
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 :
```
```