https://github.com/sergiopichardo/terraform-aws-networking
Networking Module Created during Terraform Course
https://github.com/sergiopichardo/terraform-aws-networking
Last synced: 3 months ago
JSON representation
Networking Module Created during Terraform Course
- Host: GitHub
- URL: https://github.com/sergiopichardo/terraform-aws-networking
- Owner: sergiopichardo
- License: mit
- Created: 2025-01-08T17:22:39.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-08T18:28:01.000Z (5 months ago)
- Last Synced: 2025-01-08T18:47:33.071Z (5 months ago)
- Language: HCL
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-aws-networking
Networking Module Created during Terraform Course
## Networking Module
This module manages the creation of VPCs and Subnets, allowing for the creation of both private and public subnets.
Example usage:
```sh
module "vpc" {
source = "./modules/networking"vpc_config = {
name = "13-local-modules"
cidr_block = "10.0.0.0/16"
}subnet_config = {
subnet_1 = {
cidr_block = "10.0.0.0/24"
az = "us-east-1a"
}subnet_2 = {
cidr_block = "10.0.1.0/24"
public = true
az = "us-east-1b"
}
}
}
```