How you can create Public and Personal Subnets in Terraform


To create private and non-private subnets in Terraform, you should use the AWS supplier to outline your community configuration. Right here’s an instance configuration that demonstrates easy methods to create private and non-private subnets inside a Digital Personal Cloud (VPC) in AWS:

# Outline your AWS supplier configuration
supplier "aws" {
  area = "us-west-2"  # Replace together with your desired area
}

# Create the VPC
useful resource "aws_vpc" "my_vpc" {
  cidr_block = "10.0.0.0/16"  # Replace together with your desired VPC CIDR block

  tags = {
    Identify = "my-vpc"
  }
}

# Create the general public subnet
useful resource "aws_subnet" "public_subnet" {
  vpc_id            = aws_vpc.my_vpc.id
  cidr_block        = "10.0.0.0/24"  # Replace together with your desired public subnet CIDR block
  availability_zone = "us-west-2a"  # Replace together with your desired availability zone

  tags = {
    Identify = "public-subnet"
  }
}

# Create the personal subnet
useful resource "aws_subnet" "private_subnet" {
  vpc_id            = aws_vpc.my_vpc.id
  cidr_block        = "10.0.1.0/24"  # Replace together with your desired personal subnet CIDR block
  availability_zone = "us-west-2b"  # Replace together with your desired availability zone

  tags = {
    Identify = "private-subnet"
  }
}

On this instance, the aws_vpc useful resource creates a VPC with the desired CIDR block. The aws_subnet assets create the private and non-private subnets throughout the VPC, utilizing totally different CIDR blocks and availability zones.

Ensure you have the AWS CLI configured with applicable credentials and the required permissions for creating VPCs and subnets. You may then run the Terraform instructions (terraform init, terraform plan, and terraform apply) within the listing the place you could have saved your Terraform configuration recordsdata to create the infrastructure.

This instance assumes you could have already initialized Terraform with the AWS supplier and have the required plugins put in.

Leave a Reply