resource "aws_vpc" "vpc-0a464bbd199aab0d0" {
  # checkov:skip=CKV2_AWS_11: Ensure VPC flow logging is enabled in all VPCs
  # checkov:skip=CKV2_AWS_12: Ensure the default security group of every VPC restricts all traffic
  assign_generated_ipv6_cidr_block     = "false"
  cidr_block                           = "10.11.106.128/25"
  enable_dns_hostnames                 = "true"
  enable_dns_support                   = "true"
  enable_network_address_usage_metrics = "false"
  instance_tenancy                     = "default"

  tags = {
    Business-Unit = "SME-AOMA-Core"
    Environment   = "Prod"
    Name          = "AOMA-P1"
    Owner         = "Nathaniel Lovett"
    Project-Code  = "SME-2000-0306A"
    Project-Name  = "AOMA-Core"
  }
}

resource "aws_vpc_ipv4_cidr_block_association" "secondary_cidr10" {
  vpc_id     = aws_vpc.vpc-0a464bbd199aab0d0.id
  cidr_block = "10.251.25.0/24"
}