Thursday, September 21, 2023
HomeSoftware EngineeringHow you can create Public and Personal Subnets in CloudFormation

How you can create Public and Personal Subnets in CloudFormation


To create private and non-private subnets in AWS CloudFormation, you need to use the AWS CloudFormation Template Language (CFT) to outline your community configuration. Right here’s an instance CloudFormation template that demonstrates learn how to create private and non-private subnets inside a Digital Personal Cloud (VPC) in AWS:

Assets:
  MyVPC:
    Kind: AWS::EC2::VPC
    Properties:
      CidrBlock: 10.0.0.0/16
      Tags:
        - Key: Title
          Worth: my-vpc

  PublicSubnet:
    Kind: AWS::EC2::Subnet
    Properties:
      VpcId: !Ref MyVPC
      CidrBlock: 10.0.0.0/24
      AvailabilityZone: us-west-2a
      Tags:
        - Key: Title
          Worth: public-subnet

  PrivateSubnet:
    Kind: AWS::EC2::Subnet
    Properties:
      VpcId: !Ref MyVPC
      CidrBlock: 10.0.1.0/24
      AvailabilityZone: us-west-2b
      Tags:
        - Key: Title
          Worth: private-subnet

On this instance, the AWS::EC2::VPC useful resource creates a VPC with the required CIDR block. The AWS::EC2::Subnet sources create the private and non-private subnets throughout the VPC, utilizing completely different CIDR blocks and availability zones.

It can save you this CloudFormation template in a file with a .yaml or .yml extension. Then, you need to use the AWS Administration Console, AWS CLI, or AWS SDKs to create a CloudFormation stack from the template. The stack creation course of will provision the VPC and subnets in keeping with the template.

Ensure you have the mandatory permissions to create VPCs and subnets in your AWS account. You should use the AWS Administration Console’s CloudFormation service or the AWS CLI command aws cloudformation create-stack to create the stack from the template.

This instance assumes you’ve gotten already configured the AWS CLI with applicable credentials and the required permissions for creating VPCs and subnets.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments