terraform-aws-vpc icon indicating copy to clipboard operation
terraform-aws-vpc copied to clipboard

Terraform module to create AWS VPC resources πŸ‡ΊπŸ‡¦

Results 91 terraform-aws-vpc issues
Sort by recently updated
recently updated
newest added

## Is your request related to a problem? Please describe. Certain security group rules need to be set to properly use VPCEs, such as (80, 443, 1026, 1027, 1028, 1031,...

## Description This PR adds the option to override the values used in resource tags with key "Name" (Name tags) with a list of strings, on public and private subnets....

## Is your request related to a new offering from AWS? [AWS added IPAM](https://aws.amazon.com/about-aws/whats-new/2021/12/amazon-virtual-private-cloud-vpc-announces-ip-address-manager-ipam/) support and it can manage public IPv6 ranges

enhancement
wip

## Description This change introduces a data source to look up the default security group of the vpc that the endpoint will be deployed into. The default security group is...

## Description Allow additional routes to be added for the private and intra routing tables, like it is already available for the default table. An example use case could be...

## Is your request related to a new offering from AWS? Is this functionality available in the [AWS provider for Terraform](https://registry.terraform.io/providers/hashicorp/aws/latest/docs)? See [CHANGELOG.md](https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md), too. - No πŸ›‘: please wait to...

## Description When using the flag `create_database_nat_gateway_route = false` I was expecting that the database subnets to not have a `0.0.0.0/0` route to a NAT GW. ## Versions - Module...

stale

## Description Add support for passing `ipv6_ipam_pool_id` and `assign_generated_ipv6_cidr_block` arguments to the `aws_vpc` resource. ## Motivation and Context I have a VPC where I need to pass the `ipv6_ipam_pool_id` and...

## Is your request related to a new offering from AWS? - No πŸ›‘ ## Is your request related to a problem? Please describe. I need to create 3 subnets...

## Description Hello. I had a previous VPC defined using: ```terraform module "vpc" { source = "terraform-aws-modules/vpc/aws" version = "3.2.0" name = "vpc-stage" cidr = "192.168.0.0/18" azs = data.aws_availability_zones.usw2.names public_subnets...