vpc

VPC

NetworkingAWS
General

General information about the service.

Description

Amazon Virtual Private Cloud lets you provision a logically isolated section of the AWS Cloud.

Service Namespace

AWS::EC2::VPC

ARN Pattern

arn:aws:ec2:{region}:{account}:vpc/{vpc-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

vpc-

Length

1-255

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_vpc" "main" {
2 cidr_block = "10.0.0.0/16"
3 enable_dns_hostnames = true
4 enable_dns_support = true
5
6 tags = {
7 Name = "vpc-${var.environment}"
8 }
9}
Utilities

Utilities to support app deployment or configuration.