{"id":20328734,"url":"https://github.com/allwelldotdev/terraform-aws-vpc-own-module","last_synced_at":"2025-03-04T11:46:28.332Z","repository":{"id":250223906,"uuid":"833841591","full_name":"allwelldotdev/terraform-aws-vpc-own-module","owner":"allwelldotdev","description":"Simple Terraform AWS VPC Networking module created by Allwell.","archived":false,"fork":false,"pushed_at":"2024-07-26T00:25:15.000Z","size":12,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-14T14:59:19.716Z","etag":null,"topics":["terraform","terraform-module"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/allwelldotdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-25T21:45:08.000Z","updated_at":"2024-08-06T10:13:00.000Z","dependencies_parsed_at":"2024-07-26T00:32:07.489Z","dependency_job_id":null,"html_url":"https://github.com/allwelldotdev/terraform-aws-vpc-own-module","commit_stats":null,"previous_names":["allwelldotdev/terraform-aws-vpc-own-module"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allwelldotdev%2Fterraform-aws-vpc-own-module","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allwelldotdev%2Fterraform-aws-vpc-own-module/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allwelldotdev%2Fterraform-aws-vpc-own-module/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allwelldotdev%2Fterraform-aws-vpc-own-module/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allwelldotdev","download_url":"https://codeload.github.com/allwelldotdev/terraform-aws-vpc-own-module/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241844282,"owners_count":20029611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["terraform","terraform-module"],"created_at":"2024-11-14T20:07:37.308Z","updated_at":"2025-03-04T11:46:28.302Z","avatar_url":"https://github.com/allwelldotdev.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-aws-vpc-own-module\nSimple Terraform AWS VPC Networking module created by Allwell.\n\nThis module manages the creation of VPCs and Subnets, allowing for the creation of both public and private subnets.\n\n## Usage:\n\n```hcl\nmodule \"vpc\" {\n  source = \"./modules/networking\"\n\n  vpc_config = {\n    cidr_block = \"10.0.0.0/16\"\n    name       = \"your_vpc\"\n  }\n\n  subnet_config = {\n    subnet_1 = {\n      cidr_block = \"10.0.0.0/24\"\n      az         = \"us-east-1a\"\n    },\n    subnet_2 = {\n      cidr_block = \"10.0.1.0/24\"\n      az         = \"us-east-1b\"\n      public     = true\n    },\n    subnet_3 = {\n      cidr_block = \"10.0.2.0/24\"\n      az         = \"us-east-1c\"\n      public     = true\n    },\n    subnet_4 = {\n      cidr_block = \"10.0.3.0/24\"\n      az         = \"us-east-1d\"\n    }\n  }\n}\n\n```\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"vpc_config\"\u003e\u003c/a\u003e [vpc_config](#vpc_config) | An object that contains and sets the VPC configuration | `object()` | \u003cpre\u003e{\u003cbr\u003e  cidr_block = null\u003cbr\u003e  name       = null\u003cbr\u003e}\u003c/pre\u003e | yes |\n| \u003ca name=\"vpc_config-cidr_block\"\u003e\u003c/a\u003e [cidr_block](#vpc_config-cidr_block) | An attribute in [vpc_config](#vpc_config) used to set CIDR block | `string` | `null` | yes |\n| \u003ca name=\"vpc_config-name\"\u003e\u003c/a\u003e [name](#vpc_config-name) | An attribute in [vpc_config](#vpc_config) used to set VPC name | `string` | `null` | no |\n| \u003ca name=\"subnet_config\"\u003e\u003c/a\u003e [subnet_config](#subnet_config) | An object that contains and sets VPC Subnet configuration | `map(object())` | \u003cpre\u003e{\u003cbr\u003e  subnet_1 = {\u003cbr\u003e      cidr_block = null\u003cbr\u003e      az         = null\u003cbr\u003e      public     = false\u003cbr\u003e    }\u003cbr\u003e}\u003c/pre\u003e | no |\n| \u003ca name=\"subnet_config-cidr_block\"\u003e\u003c/a\u003e [cidr_block](#subnet_config-cidr_block) | An attribute in [subnet_config](#subnet_config) used to set VPC subnet CIDR block | `string` | `null` | no |\n| \u003ca name=\"subnet_config-az\"\u003e\u003c/a\u003e [az](#subnet_config-az) | An attribute in [subnet_config](#subnet_config) used to set VPC subnet availability zone  | `string` | `null` | no |\n| \u003ca name=\"subnet_config-public\"\u003e\u003c/a\u003e [public](#subnet_config-public) | An attribute in [subnet_config](#subnet_config) used to set if VPC subnet is public or private  | `bool` | `false` | no |\n\n## Outputs\n\n| Name | Description |\n| ---- | ----------- |\n| \u003ca name=\"vpc_id\"\u003e\u003c/a\u003e [vpc_id](#vpc_id) | The ID of the VPC |\n| \u003ca name=\"public_subnets\"\u003e\u003c/a\u003e [public_subnets](#public_subnets) | A map of objects containing each public VPC subnet's ID and availability zone |\n| \u003ca name=\"private_subnets\"\u003e\u003c/a\u003e [private_subnets](#private_subnets) | A map of objects containing each VPC subnet's ID and availability zone of private subnets |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallwelldotdev%2Fterraform-aws-vpc-own-module","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallwelldotdev%2Fterraform-aws-vpc-own-module","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallwelldotdev%2Fterraform-aws-vpc-own-module/lists"}