terraform-aws-vpc

A terraform module for creating an AWS VPC.

https://github.com/terraformtoolbox/terraform-aws-vpc

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.5%) to scientific vocabulary

Keywords

aws terraform terraform-module wolfsoftware

Keywords from Contributors

interactive colour packaging rubygems versions network-simulation hacking embedded optim standardization
Last synced: 6 months ago · JSON representation ·

Repository

A terraform module for creating an AWS VPC.

Basic Info
  • Host: GitHub
  • Owner: TerraformToolbox
  • License: mit
  • Language: HCL
  • Default Branch: master
  • Homepage:
  • Size: 196 KB
Statistics
  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • Open Issues: 3
  • Releases: 1
Topics
aws terraform terraform-module wolfsoftware
Created over 1 year ago · Last pushed 6 months ago
Metadata Files
Readme Contributing Funding License Code of conduct Citation Codeowners Security

README.md

TerraformToolbox logo
Github Build Status License Created
Release Released Commits since release

Overview

A Terraform module for creating an AWS VPC with options to create public and private subnets, NAT gateways, and Internet gateways.

Usage

Minimal Usage

module "vpc" { source = "https://github.com/TerraformToolbox/terraform-aws-vpc" region = "us-west-2" cidr_block = "10.0.0.0/16" vpc_name = "my-vpc" }

All Options

``` module "vpc" { source = "https://github.com/TerraformToolbox/terraform-aws-vpc"

region = "us-west-2" cidrblock = "10.0.0.0/16" enablednssupport = true enablednshostnames = true instancetenancy = "default" vpc_name = "my-vpc" tags = { "Environment" = "dev" }

createsubnets = true createinternetgateway = true createnatgateway = true publicsubnetcidrs = ["10.0.1.0/24", "10.0.2.0/24"] privatesubnet_cidrs = ["10.0.3.0/24", "10.0.4.0/24"]

endpoints = ["com.amazonaws.us-west-2.s3", "com.amazonaws.us-west-2.dynamodb"] endpointsprivatednsenabled = [true, false] endpointssecuritygroupids = [["sg-12345678"], ["sg-87654321"]] endpointssubnetids = [["subnet-1234abcd"], ["subnet-abcd1234"]] endpoints_type = ["Gateway", "Interface"] } ```

Inputs

  • region: AWS region
  • cidr_block: CIDR block for the VPC
  • enable_dns_support: Enable DNS support in the VPC
  • enable_dns_hostnames: Enable DNS hostnames in the VPC
  • instance_tenancy: Tenancy option for instances launched into the VPC
  • vpc_name: Name of the VPC
  • tags: A map of tags to add to all resources
  • endpoints: List of VPC endpoints
  • endpoints_private_dns_enabled: List of private DNS enabled for endpoints
  • endpoints_security_group_ids: List of security group IDs for endpoints
  • endpoints_subnet_ids: List of subnet IDs for endpoints
  • endpoints_type: List of endpoint types
  • create_subnets: Flag to create subnets automatically
  • create_internet_gateway: Flag to create an Internet Gateway
  • create_nat_gateway: Flag to create NAT Gateway
  • public_subnet_cidrs: List of public subnet CIDR blocks if manually creating subnets
  • private_subnet_cidrs: List of private subnet CIDR blocks if manually creating subnets

Outputs

  • vpc_id: The ID of the VPC
  • vpc_arn: The ARN of the VPC
  • vpc_cidr_block: The CIDR block of the VPC
  • vpc_default_network_acl_id: The ID of the default network ACL
  • vpc_default_route_table_id: The ID of the default route table
  • vpc_default_security_group_id: The ID of the default security group
  • vpc_main_route_table_id: The ID of the main route table
  • public_subnet_ids: The IDs of the public subnets
  • public_subnet_cidr_blocks: The CIDR blocks of the public subnets
  • private_subnet_ids: The IDs of the private subnets
  • private_subnet_cidr_blocks: The CIDR blocks of the private subnets
  • internet_gateway_id: The ID of the Internet Gateway
  • nat_gateway_ids: The IDs of the NAT Gateways
  • nat_gateway_ips: The Elastic IPs of the NAT Gateways
  • public_route_table_id: The ID of the public route table
  • private_route_table_id: The ID of the private route table
  • vpc_endpoints: The IDs of the VPC endpoints


Owner

  • Name: Terraform Toolbox
  • Login: TerraformToolbox
  • Kind: organization
  • Email: github@wolfsoftware.com
  • Location: United Kingdom

A random collection of Terraform modules. Created by Wolf Software.

Citation (CITATION.cff)

cff-version: 1.2.0
message: If you use this software, please cite it using these metadata.
title: Terraform AWS VPC
abstract: A terraform module for creating an AWS VPC.
type: software
version: 0.1.0
date-released: 2024-06-07
repository-code: https://github.com/TerraformToolbox/terraform-aws-vpc
keywords:
  - "Wolf Software"
  - "Software"
license: MIT
authors:
  - family-names: "Wolf"
    orcid: "https://orcid.org/0009-0007-0983-2072"

GitHub Events

Total
  • Delete event: 63
  • Issue comment event: 134
  • Push event: 127
  • Pull request review event: 109
  • Pull request event: 129
  • Create event: 64
Last Year
  • Delete event: 63
  • Issue comment event: 134
  • Push event: 127
  • Pull request review event: 109
  • Pull request event: 129
  • Create event: 64

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 33
  • Total Committers: 2
  • Avg Commits per committer: 16.5
  • Development Distribution Score (DDS): 0.03
Past Year
  • Commits: 33
  • Committers: 2
  • Avg Commits per committer: 16.5
  • Development Distribution Score (DDS): 0.03
Top Committers
Name Email Commits
dependabot[bot] 4****] 32
Wolf w****f@t****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 75
  • Average time to close issues: N/A
  • Average time to close pull requests: 1 day
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 1.81
  • Merged pull requests: 66
  • Bot issues: 0
  • Bot pull requests: 75
Past Year
  • Issues: 0
  • Pull requests: 57
  • Average time to close issues: N/A
  • Average time to close pull requests: 2 days
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 1.81
  • Merged pull requests: 48
  • Bot issues: 0
  • Bot pull requests: 57
Top Authors
Issue Authors
  • dependabot[bot] (3)
Pull Request Authors
  • dependabot[bot] (114)
Top Labels
Issue Labels
dependabot: auto approve (3) dependabot: auto merge (3) dependabot: dependencies (3) dependabot: ecosystem : github actions (3)
Pull Request Labels
dependabot: dependencies (114) dependabot: ecosystem : github actions (114) dependabot: auto approve (104) dependabot: auto merge (104) dependabot: manual merge (4)

Dependencies

.github/workflows/cicd.yml actions
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • hashicorp/setup-terraform 651471c36a6092792c552e8b1bef71e592b462d8 composite
.github/workflows/citation-validation.yml actions
  • ActionsToolbox/get-language-versions-action 446919617fd774095b5dd3ed71c39dd3fd0d8f4f composite
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • citation-file-format/cffconvert-github-action 4cf11baa70a673bfdf9dad0acc7ee33b3f4b6084 composite
  • ruby/setup-ruby d5fb7a202fc07872cb44f00ba8e6197b70cb0c55 composite
.github/workflows/delete-old-workflow-runs.yml actions
  • Gamesight/slack-workflow-status 68bf00d0dbdbcb206c278399aa1ef6c14f74347a composite
  • Mattraks/delete-workflow-runs 39f0bbed25d76b34de5594dceab824811479e5de composite
.github/workflows/dependabot.yml actions
  • dependabot/fetch-metadata 5e5f99653a5b510e8555840e80cbf1514ad4af38 composite
.github/workflows/document-validation.yml actions
  • ActionsToolbox/get-language-versions-action 446919617fd774095b5dd3ed71c39dd3fd0d8f4f composite
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • actions/setup-node 60edb5dd545a775178f52524783378180af0d1f8 composite
  • ruby/setup-ruby d5fb7a202fc07872cb44f00ba8e6197b70cb0c55 composite
.github/workflows/generate-release.yml actions
  • Bullrich/generate-release-changelog 6b60f004b4bf12ff271603dc32dbd261965ad2f2 composite
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • softprops/action-gh-release 69320dbe05506a9a39fc8ae11030b214ec2d1f87 composite
.github/workflows/generate-test-release.yml actions
  • Bullrich/generate-release-changelog 6b60f004b4bf12ff271603dc32dbd261965ad2f2 composite
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • softprops/action-gh-release 69320dbe05506a9a39fc8ae11030b214ec2d1f87 composite
.github/workflows/greetings.yml actions
  • actions/first-interaction 34f15e814fe48ac9312ccf29db4e74fa767cbab7 composite
.github/workflows/purge-deprecated-workflow-runs.yml actions
  • Gamesight/slack-workflow-status 68bf00d0dbdbcb206c278399aa1ef6c14f74347a composite
  • otto-de/purge-deprecated-workflow-runs 31a4e821d43e9a354cbd65845922c76e4b4b3633 composite
.github/workflows/repository-validation.yml actions
  • ActionsToolbox/get-language-versions-action 446919617fd774095b5dd3ed71c39dd3fd0d8f4f composite
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • actions/setup-go cdcb36043654635271a94b9a6d1392de5bb323a7 composite
  • actions/setup-python 82c7e631bb3cdc910f68e0081d67478d79c6982d composite
.github/workflows/security-hardening.yml actions
  • actions/checkout a5ac7e51b41094c92402da3b24376905380afc29 composite
  • zgosalvez/github-actions-ensure-sha-pinned-actions 2f2ebc6d914ab515939dc13f570f91baeb2c194c composite
.github/workflows/stale.yml actions
  • Gamesight/slack-workflow-status 68bf00d0dbdbcb206c278399aa1ef6c14f74347a composite
  • actions/stale 28ca1036281a5e5922ead5184a1bbf96e5fc984e composite