question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Available IP addresses reported by the ec2 client subnet objects appears to be incorrect unless IP is assigned directly to an EC2 instance

See original GitHub issue

Describe the bug Available IP addresses reported by the ec2 client subnet objects appears to be incorrect.

Steps to reproduce Full code is here:

import boto3
from ipaddress import ip_network


def get_name(subnet):
    subnet_name = ""
    tags = subnet.tags or []
    for tag in tags:
        if tag.get('Key') == "Name":
            subnet_name = tag.get('Value')
    return subnet_name


def get_subnets(region_name):
    session = boto3.Session(profile_name='admin')
    ec2 = session.resource('ec2', region_name=region_name)
    subnets = sorted(ec2.subnets.all(), key=lambda x: [int(y) for y in x.cidr_block.split('.')[0:3]])
    return subnets


def get_and_print_subnet_usage(region_name):
    subnets = get_subnets(region_name)
    print (f"{'subnet_id':<30} {'cidr_block':<20} {'available':<15} {'max':<15} {'real_max':<15} {'pct_used':<15} {'in_use':<15} {'subnet_name':<15}")
    for subnet in subnets:
        net = ip_network(subnet.cidr_block)
        max_hosts = len(list(net.hosts()))
        real_max = max_hosts - 3
        pct_used = 100 * (real_max - subnet.available_ip_address_count) / real_max
        subnet_name = get_name(subnet)
        in_use = "no" if pct_used == 0 else "yes"
        print (f"{subnet.id:<30} {subnet.cidr_block:<20} {subnet.available_ip_address_count:<15} {max_hosts:<15} {real_max:<15}  {pct_used:<15.2f} {in_use:<15}  {subnet_name:<15}")

When running get_and_print_subnet_usage, I’m subtracting 3 from the max possible hosts from the CIDR block to make sure that the “real” count is represented - after that I compare the subnet.available_ip_address_count to the real maximum to see how utilized the subnet is. What I found is that the available subnet addresses are overrepresented - I don’t know how widespread this is, but at least for the VPN Client Endpoint CIDR block this number is incorrect:

root@777c5789e57d:/source/otools$ otool print-subnet-usage
07/08/2021 04:38:04 PM INFO     [botocore.credentials] Found credentials in shared credentials file: ~/.aws/credentials
subnet_id                      cidr_block           available       max             real_max        pct_used        in_use
subnet-1ce3eb5a                10.0.0.0/24          248             254             251              1.20            yes
subnet-9d828adb                10.0.1.0/24          250             254             251              0.40            yes
subnet-cdee00ba                10.0.2.0/24          245             254             251              2.39            yes
subnet-12ef0165                10.0.10.0/24         236             254             251              5.98            yes
subnet-0bffac4bd13d9dddc       10.0.11.0/24         251             254             251              0.00            no
subnet-ffa04888                10.0.20.0/24         225             254             251              10.36           yes
subnet-e1c7cda7                10.0.21.0/24         245             254             251              2.39            yes
subnet-0054c4b2531a99d1d       10.0.28.0/22         1019            1022            1019             0.00            no
subnet-22cbdf0a                10.0.90.0/24         248             254             251              1.20            yes
subnet-c6cadeee                10.0.91.0/24         126             254             251              49.80           yes
subnet-71cbdf59                10.0.92.0/24         250             254             251              0.40            yes
subnet-bb1ad0cc                10.0.93.0/24         249             254             251              0.80            yes

Looking at our VPN client endpoint I see at least 10-11 active connections with those IP addresses in use in the 10.0.28.0/22 CIDR block that are not reflected in the subnet.available_ip_address_count.

image

Expected behavior I would expect the count to be accurate, even if the subnet IP addresses are not assigned directly to an EC2 instance

Debug logs

root@777c5789e57d:/source/otools$ otool print-subnet-usage
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
2021-07-08 16:42:58,740 botocore.hooks [DEBUG] Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from before-call.apigateway to before-call.api-gateway
2021-07-08 16:42:58,744 botocore.hooks [DEBUG] Changing event name from before-call.apigateway to before-call.api-gateway
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
2021-07-08 16:42:58,745 botocore.hooks [DEBUG] Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
2021-07-08 16:42:58,748 botocore.hooks [DEBUG] Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
2021-07-08 16:42:58,748 botocore.hooks [DEBUG] Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
2021-07-08 16:42:58,749 botocore.hooks [DEBUG] Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
2021-07-08 16:42:58,750 botocore.hooks [DEBUG] Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
2021-07-08 16:42:58,754 botocore.hooks [DEBUG] Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
2021-07-08 16:42:58,754 botocore.hooks [DEBUG] Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
2021-07-08 16:42:58,755 botocore.hooks [DEBUG] Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
2021-07-08 16:42:58,755 botocore.hooks [DEBUG] Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
07/08/2021 04:42:58 PM DEBUG    [botocore.session] Setting config variable for profile to 'admin'
2021-07-08 16:42:58,755 botocore.session [DEBUG] Setting config variable for profile to 'admin'
07/08/2021 04:42:58 PM DEBUG    [botocore.loaders] Loading JSON file: /usr/local/lib/python3.7/site-packages/boto3/data/ec2/2016-11-15/resources-1.json
2021-07-08 16:42:58,768 botocore.loaders [DEBUG] Loading JSON file: /usr/local/lib/python3.7/site-packages/boto3/data/ec2/2016-11-15/resources-1.json
07/08/2021 04:42:58 PM DEBUG    [botocore.credentials] Skipping environment variable credential check because profile name was explicitly set.
2021-07-08 16:42:58,773 botocore.credentials [DEBUG] Skipping environment variable credential check because profile name was explicitly set.
07/08/2021 04:42:58 PM DEBUG    [botocore.credentials] Looking for credentials via: assume-role
2021-07-08 16:42:58,773 botocore.credentials [DEBUG] Looking for credentials via: assume-role
07/08/2021 04:42:58 PM DEBUG    [botocore.credentials] Looking for credentials via: assume-role-with-web-identity
2021-07-08 16:42:58,773 botocore.credentials [DEBUG] Looking for credentials via: assume-role-with-web-identity
07/08/2021 04:42:58 PM DEBUG    [botocore.credentials] Looking for credentials via: shared-credentials-file
2021-07-08 16:42:58,773 botocore.credentials [DEBUG] Looking for credentials via: shared-credentials-file
07/08/2021 04:42:58 PM INFO     [botocore.credentials] Found credentials in shared credentials file: ~/.aws/credentials
2021-07-08 16:42:58,774 botocore.credentials [INFO] Found credentials in shared credentials file: ~/.aws/credentials
07/08/2021 04:42:58 PM DEBUG    [botocore.loaders] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/endpoints.json
2021-07-08 16:42:58,774 botocore.loaders [DEBUG] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/endpoints.json
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event choose-service-name: calling handler <function handle_service_name_alias at 0x7ff36730ac20>
2021-07-08 16:42:58,779 botocore.hooks [DEBUG] Event choose-service-name: calling handler <function handle_service_name_alias at 0x7ff36730ac20>
07/08/2021 04:42:58 PM DEBUG    [botocore.loaders] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/ec2/2016-11-15/service-2.json
2021-07-08 16:42:58,790 botocore.loaders [DEBUG] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/ec2/2016-11-15/service-2.json
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event creating-client-class.ec2: calling handler <function add_generate_presigned_url at 0x7ff3672fd710>
2021-07-08 16:42:58,817 botocore.hooks [DEBUG] Event creating-client-class.ec2: calling handler <function add_generate_presigned_url at 0x7ff3672fd710>
07/08/2021 04:42:58 PM DEBUG    [botocore.args] The s3 config key is not a dictionary type, ignoring its value of: None
2021-07-08 16:42:58,817 botocore.args [DEBUG] The s3 config key is not a dictionary type, ignoring its value of: None
07/08/2021 04:42:58 PM DEBUG    [botocore.endpoint] Setting ec2 timeout as (60, 60)
2021-07-08 16:42:58,820 botocore.endpoint [DEBUG] Setting ec2 timeout as (60, 60)
07/08/2021 04:42:58 PM DEBUG    [botocore.loaders] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/_retry.json
2021-07-08 16:42:58,821 botocore.loaders [DEBUG] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/_retry.json
07/08/2021 04:42:58 PM DEBUG    [botocore.client] Registering retry handlers for service: ec2
2021-07-08 16:42:58,821 botocore.client [DEBUG] Registering retry handlers for service: ec2
07/08/2021 04:42:58 PM DEBUG    [boto3.resources.factory] Loading ec2:ec2
2021-07-08 16:42:58,822 boto3.resources.factory [DEBUG] Loading ec2:ec2
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event creating-resource-class.ec2.ServiceResource: calling handler <function lazy_call.<locals>._handler at 0x7ff362365e60>
2021-07-08 16:42:58,827 botocore.hooks [DEBUG] Event creating-resource-class.ec2.ServiceResource: calling handler <function lazy_call.<locals>._handler at 0x7ff362365e60>
07/08/2021 04:42:58 PM DEBUG    [botocore.loaders] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/ec2/2016-11-15/paginators-1.json
2021-07-08 16:42:58,835 botocore.loaders [DEBUG] Loading JSON file: /usr/local/lib/python3.7/site-packages/botocore/data/ec2/2016-11-15/paginators-1.json
07/08/2021 04:42:58 PM DEBUG    [boto3.resources.collection] Calling paginated ec2:describe_subnets with {}
2021-07-08 16:42:58,836 boto3.resources.collection [DEBUG] Calling paginated ec2:describe_subnets with {}
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event before-parameter-build.ec2.DescribeSubnets: calling handler <bound method ParameterAlias.alias_parameter_in_call of <botocore.handlers.ParameterAlias object at 0x7ff36732f3d0>>
2021-07-08 16:42:58,836 botocore.hooks [DEBUG] Event before-parameter-build.ec2.DescribeSubnets: calling handler <bound method ParameterAlias.alias_parameter_in_call of <botocore.handlers.ParameterAlias object at 0x7ff36732f3d0>>
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event before-parameter-build.ec2.DescribeSubnets: calling handler <function generate_idempotent_uuid at 0x7ff3673283b0>
2021-07-08 16:42:58,837 botocore.hooks [DEBUG] Event before-parameter-build.ec2.DescribeSubnets: calling handler <function generate_idempotent_uuid at 0x7ff3673283b0>
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event before-call.ec2.DescribeSubnets: calling handler <function inject_api_version_header_if_needed at 0x7ff36732be60>
2021-07-08 16:42:58,837 botocore.hooks [DEBUG] Event before-call.ec2.DescribeSubnets: calling handler <function inject_api_version_header_if_needed at 0x7ff36732be60>
07/08/2021 04:42:58 PM DEBUG    [botocore.endpoint] Making request for OperationModel(name=DescribeSubnets) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8', 'User-Agent': 'Boto3/1.9.222 Python/3.7.10 Linux/4.19.128-microsoft-standard Botocore/1.12.222 Resource'}, 'body': {'Action': 'DescribeSubnets', 'Version': '2016-11-15'}, 'url': 'https://ec2.us-east-1.amazonaws.com/', 'context': {'client_region': 'us-east-1', 'client_config': <botocore.config.Config object at 0x7ff360e0cc90>, 'has_streaming_input': False, 'auth_type': None}}
2021-07-08 16:42:58,837 botocore.endpoint [DEBUG] Making request for OperationModel(name=DescribeSubnets) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8', 'User-Agent': 'Boto3/1.9.222 Python/3.7.10 Linux/4.19.128-microsoft-standard Botocore/1.12.222 Resource'}, 'body': {'Action': 'DescribeSubnets', 'Version': '2016-11-15'}, 'url': 'https://ec2.us-east-1.amazonaws.com/', 'context': {'client_region': 'us-east-1', 'client_config': <botocore.config.Config object at 0x7ff360e0cc90>, 'has_streaming_input': False, 'auth_type': None}}
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event request-created.ec2.DescribeSubnets: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7ff360e0cc50>>
2021-07-08 16:42:58,838 botocore.hooks [DEBUG] Event request-created.ec2.DescribeSubnets: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7ff360e0cc50>>
07/08/2021 04:42:58 PM DEBUG    [botocore.hooks] Event choose-signer.ec2.DescribeSubnets: calling handler <function set_operation_specific_signer at 0x7ff367328290>
2021-07-08 16:42:58,838 botocore.hooks [DEBUG] Event choose-signer.ec2.DescribeSubnets: calling handler <function set_operation_specific_signer at 0x7ff367328290>
07/08/2021 04:42:58 PM DEBUG    [botocore.auth] Calculating signature using v4 auth.
2021-07-08 16:42:58,839 botocore.auth [DEBUG] Calculating signature using v4 auth.
07/08/2021 04:42:58 PM DEBUG    [botocore.auth] CanonicalRequest:
POST
/

content-type:application/x-www-form-urlencoded; charset=utf-8
host:ec2.us-east-1.amazonaws.com
x-amz-date:20210708T164258Z

content-type;host;x-amz-date
4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
2021-07-08 16:42:58,839 botocore.auth [DEBUG] CanonicalRequest:
POST
/

content-type:application/x-www-form-urlencoded; charset=utf-8
host:ec2.us-east-1.amazonaws.com
x-amz-date:20210708T164258Z

content-type;host;x-amz-date
4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
07/08/2021 04:42:58 PM DEBUG    [botocore.auth] StringToSign:
AWS4-HMAC-SHA256
20210708T164258Z
20210708/us-east-1/ec2/aws4_request
e32255ed9342600ead8d28644df9f29802b1195a6b8565f583d64d66c2f602c2
2021-07-08 16:42:58,839 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20210708T164258Z
20210708/us-east-1/ec2/aws4_request
e32255ed9342600ead8d28644df9f29802b1195a6b8565f583d64d66c2f602c2
07/08/2021 04:42:58 PM DEBUG    [botocore.auth] Signature:
db7d623d120c8f3b678303c53d5fa890f3e083a77f236931c8503fe48f2b88d9
2021-07-08 16:42:58,839 botocore.auth [DEBUG] Signature:
db7d623d120c8f3b678303c53d5fa890f3e083a77f236931c8503fe48f2b88d9
07/08/2021 04:42:58 PM DEBUG    [botocore.endpoint] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://ec2.us-east-1.amazonaws.com/, headers={'Content-Type': b'application/x-www-form-urlencoded; charset=utf-8', 'User-Agent': b'Boto3/1.9.222 Python/3.7.10 Linux/4.19.128-microsoft-standard Botocore/1.12.222 Resource', 'X-Amz-Date': b'20210708T164258Z', 'Authorization': b'AWS4-HMAC-SHA256 Credential=AKIARGTKZBYCJGKOTDCH/20210708/us-east-1/ec2/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=db7d623d120c8f3b678303c53d5fa890f3e083a77f236931c8503fe48f2b88d9', 'Content-Length': '41'}>
2021-07-08 16:42:58,839 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://ec2.us-east-1.amazonaws.com/, headers={'Content-Type': b'application/x-www-form-urlencoded; charset=utf-8', 'User-Agent': b'Boto3/1.9.222 Python/3.7.10 Linux/4.19.128-microsoft-standard Botocore/1.12.222 Resource', 'X-Amz-Date': b'20210708T164258Z', 'Authorization': b'AWS4-HMAC-SHA256 Credential=AKIARGTKZBYCJGKOTDCH/20210708/us-east-1/ec2/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=db7d623d120c8f3b678303c53d5fa890f3e083a77f236931c8503fe48f2b88d9', 'Content-Length': '41'}>
07/08/2021 04:42:58 PM DEBUG    [urllib3.util.retry] Converted retries value: False -> Retry(total=False, connect=None, read=None, redirect=0, status=None)
2021-07-08 16:42:58,840 urllib3.util.retry [DEBUG] Converted retries value: False -> Retry(total=False, connect=None, read=None, redirect=0, status=None)
07/08/2021 04:42:58 PM DEBUG    [urllib3.connectionpool] Starting new HTTPS connection (1): ec2.us-east-1.amazonaws.com:443
2021-07-08 16:42:58,841 urllib3.connectionpool [DEBUG] Starting new HTTPS connection (1): ec2.us-east-1.amazonaws.com:443
07/08/2021 04:42:59 PM DEBUG    [urllib3.connectionpool] https://ec2.us-east-1.amazonaws.com:443 "POST / HTTP/1.1" 200 None
2021-07-08 16:42:59,424 urllib3.connectionpool [DEBUG] https://ec2.us-east-1.amazonaws.com:443 "POST / HTTP/1.1" 200 None
07/08/2021 04:42:59 PM DEBUG    [botocore.parsers] Response headers: {'x-amzn-RequestId': '0582cc1e-99d7-46b0-b0d1-e724fdd60868', 'Cache-Control': 'no-cache, no-store', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains', 'Content-Type': 'text/xml;charset=UTF-8', 'Transfer-Encoding': 'chunked', 'vary': 'accept-encoding', 'Date': 'Thu, 08 Jul 2021 16:42:58 GMT', 'Server': 'AmazonEC2'}
2021-07-08 16:42:59,984 botocore.parsers [DEBUG] Response headers: {'x-amzn-RequestId': '0582cc1e-99d7-46b0-b0d1-e724fdd60868', 'Cache-Control': 'no-cache, no-store', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains', 'Content-Type': 'text/xml;charset=UTF-8', 'Transfer-Encoding': 'chunked', 'vary': 'accept-encoding', 'Date': 'Thu, 08 Jul 2021 16:42:58 GMT', 'Server': 'AmazonEC2'}
07/08/2021 04:42:59 PM DEBUG    [botocore.parsers] Response body:
b'<?xml version="1.0" encoding="UTF-8"?>\n<DescribeSubnetsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">\n    <requestId>0582cc1e-99d7-46b0-b0d1-e724fdd60868</requestId>\n    <subnetSet>\n        <item>\n            <subnetId>subnet-06086d1272f85e8f6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-06086d1272f85e8f6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.0.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
<mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-a9e01ca6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-a9e01ca6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.6.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 6</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e30e59e5bb267ee0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e30e59e5bb267ee0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 3A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet3A</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d1acf3894b05e2e4</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d1acf3894b05e2e4</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-3df5e115</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-3df5e115</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.94.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>148</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Back-End Zone A (DEV-BEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cdee00ba</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cdee00ba</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>245</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n
     <item>\n                    <key>Name</key>\n                    <value>Prod Database Zone B (PROD-DBZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-ffa04888</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-ffa04888</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.20.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>225</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Front-End Zone B (FEZ-B)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-2b8b7406</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-2b8b7406</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.104.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>221</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone A (PROD-BEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
 <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-d746b9a1</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-d746b9a1</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.98.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod PII Zone B (PROD-PIZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0c24e672c552342ee</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0c24e672c552342ee</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-68526523</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-68526523</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
           <key>Name</key>\n                    <value>**QA-4</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-064d6d3216eb009f9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-064d6d3216eb009f9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.128.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0abc707b29ebd644e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0abc707b29ebd644e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>us-east-1c.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n
<key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-05c9d8803a57678e3</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-05c9d8803a57678e3</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0f395b52</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0f395b52</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n
 <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-3</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c8c1aee7</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c8c1aee7</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
       <key>Name</key>\n                    <value>**Production 1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-435f901a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-435f901a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.97.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>246</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone C (PROD-BEZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cc4bb9e0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cc4bb9e0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.254.16/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>11</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Management (MNGMT)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c1a6928a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c1a6928a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d58e46fd8c95424e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d58e46fd8c95424e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n
  <cidrBlock>172.20.32.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>us-east-1a.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5b714610</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5b714610</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.8.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 8</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-062f2f311dfdcbbb0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-062f2f311dfdcbbb0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n
 <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>Name</key>\n
    <value>us-east-1b.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-71cbdf59</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-71cbdf59</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.92.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Database Zone A (DEV-DBZ-A)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n
        <value>dev</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-e1c7cda7</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-e1c7cda7</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.21.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>245</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Front-End Zone C (FEZ-C)</value>\n                </item>\n
 </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-067a3ebf056ee255d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-067a3ebf056ee255d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.8.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>SubnetType</key>\n
    <value>Utility</value>\n                </item>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-05ce1284d1884224e</value>\n                </item>\n                <item>\n
        <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1c.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0c60cc7b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0c60cc7b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.96.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>236</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone B (PROD-BEZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0dfe9dcf6e21f824f</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0dfe9dcf6e21f824f</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c532f7fa</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c532f7fa</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.160.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0ba88fa976afed370</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0ba88fa976afed370</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.0.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 1A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet1A</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-22cbdf0a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-22cbdf0a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.90.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>248</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Demilitarized Zone (DEV-DMZ-A)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>dev</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c6cadeee</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c6cadeee</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.91.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>126</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>dev</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Front End Zone A (DEV-FEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-9d828adb</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-9d828adb</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n
    <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Database Zone C (PROD-DBZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n
  <subnetId>subnet-a5338e99</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-a5338e99</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.105.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>246</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n
          <value>Prod Back-End Zone E (PROD-BEZ-E)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-9a623d96</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-9a623d96</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.128.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8109</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-19deae26</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-19deae26</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 5</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0164371a344c0a135</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0164371a344c0a135</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.224.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-1ce3eb5a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-1ce3eb5a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.0.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>248</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Demilitarized Zone C (PROD-DMZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-06feca3c84bb1f5d8</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-06feca3c84bb1f5d8</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.204.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>eks-2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-951605cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-951605cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.101.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev PII Zone C (DEV-PIZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d961eeb2158dc22b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d961eeb2158dc22b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.128.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4088</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Public subnet 1</value>\n                </item>\n                <item>\n
           <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n
          <value>PublicSubnet1</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Public</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n
</tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e89633ed7580fb17</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e89633ed7580fb17</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0017d1ffe82377211</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0017d1ffe82377211</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.192.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-19af8a7d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-19af8a7d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 4</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-00f14afb31222ab45</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-00f14afb31222ab45</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.144.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4088</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
         <key>Name</key>\n                    <value>Public subnet 2</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Public</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PublicSubnet2</value>\n                </item>\n
      <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-fc7816d3</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-fc7816d3</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-8b1d6eb4</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-8b1d6eb4</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-5</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e2e51538c1099fc8</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e2e51538c1099fc8</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.0.0/24</cidrBlock>\n
<ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-02dac12a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-02dac12a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.95.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>249</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
    <key>Name</key>\n                    <value>Dev Redshift Zone (PROD-DBZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0b9f9f51d98f2c87c</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0b9f9f51d98f2c87c</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.200.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>eks-1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-bb1ad0cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-bb1ad0cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.93.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>249</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Database Zone B (DEV-DBZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-66d7b849</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-66d7b849</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.7.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 7</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-37b29a6d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-37b29a6d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8131</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-952534cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-952534cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.99.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod PII Zone C (Prod-PIZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0be68556</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0be68556</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 3</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-02031852a6683dd71</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-02031852a6683dd71</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-b19784e9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-b19784e9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.103.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>GnA Front-end Zone</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0413dd7e29aedbe9b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0413dd7e29aedbe9b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.4.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-0f6415c9cead7a6d7</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1b.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Utility</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-07839e71cd3b3262d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-07839e71cd3b3262d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n
  <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0088de7d8794dc77b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0088de7d8794dc77b</subnetArn>\n            <state>available</state>\n
<ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.0.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-02a0b830dec64fc07</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n
  <value>Utility</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n
     <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1a.dev.k8s.local</value>\n
       </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5d288f39</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5d288f39</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.192.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8067</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-03a6fb2cf9ba4ca79</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-03a6fb2cf9ba4ca79</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.160.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cefa47e2</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cefa47e2</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.106.0/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>11</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev EMR Zone (DEV-EMR-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-12ef0165</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-12ef0165</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.10.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>236</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Demilitarized Zone B (PROD-DMZ-B)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
   <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-d7586f9c</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-d7586f9c</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0bffac4bd13d9dddc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0bffac4bd13d9dddc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.11.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>VPN Connections 1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d832f99cf2fcaeef</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d832f99cf2fcaeef</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-7fc03c70</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-7fc03c70</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.9.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 9</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0abb7e8e4751f6412</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0abb7e8e4751f6412</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.32.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet2A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 2A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5f734573</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5f734573</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.224.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8097</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>dbc-74d460e4-f7c1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-f49784ac</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-f49784ac</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.102.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n
<availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>GnA Back-end Zone</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-04ce60707b02a2ee6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-04ce60707b02a2ee6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-51faee79</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-51faee79</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.254.0/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>10</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>VPN Zone (ALL-VPNZ)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-3c768f4a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-3c768f4a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.100.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev PII Zone B (DEV-PIZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0054c4b2531a99d1d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0054c4b2531a99d1d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.28.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
         <key>Environment</key>\n                    <value>Production</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>use-dev-vpn-client1-cidr</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0386c17a70de427a9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0386c17a70de427a9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.160.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4089</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n
           <value>Public subnet 3</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PublicSubnet3</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n
 <key>Network</key>\n                    <value>Public</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0afb0c41</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0afb0c41</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8177</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-00176788e057a65aa</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-00176788e057a65aa</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n
 <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-052812620fa9daf22</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-052812620fa9daf22</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d1af4617efd0c91e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d1af4617efd0c91e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-071193de957767e8b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-071193de957767e8b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.63.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>dbc-natgw</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
<mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n    </subnetSet>\n</DescribeSubnetsResponse>'
2021-07-08 16:42:59,984 botocore.parsers [DEBUG] Response body:
b'<?xml version="1.0" encoding="UTF-8"?>\n<DescribeSubnetsResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">\n    <requestId>0582cc1e-99d7-46b0-b0d1-e724fdd60868</requestId>\n    <subnetSet>\n        <item>\n            <subnetId>subnet-06086d1272f85e8f6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-06086d1272f85e8f6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.0.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
<mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-a9e01ca6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-a9e01ca6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.6.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 6</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e30e59e5bb267ee0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e30e59e5bb267ee0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 3A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet3A</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d1acf3894b05e2e4</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d1acf3894b05e2e4</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-3df5e115</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-3df5e115</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.94.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>148</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Back-End Zone A (DEV-BEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cdee00ba</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cdee00ba</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>245</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n
     <item>\n                    <key>Name</key>\n                    <value>Prod Database Zone B (PROD-DBZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-ffa04888</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-ffa04888</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.20.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>225</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Front-End Zone B (FEZ-B)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-2b8b7406</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-2b8b7406</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.104.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>221</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone A (PROD-BEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
 <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-d746b9a1</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-d746b9a1</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.98.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod PII Zone B (PROD-PIZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0c24e672c552342ee</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0c24e672c552342ee</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-68526523</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-68526523</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
           <key>Name</key>\n                    <value>**QA-4</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-064d6d3216eb009f9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-064d6d3216eb009f9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.128.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0abc707b29ebd644e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0abc707b29ebd644e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>us-east-1c.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n
<key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-05c9d8803a57678e3</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-05c9d8803a57678e3</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0f395b52</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0f395b52</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n
 <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-3</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c8c1aee7</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c8c1aee7</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
       <key>Name</key>\n                    <value>**Production 1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-435f901a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-435f901a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.97.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>246</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone C (PROD-BEZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cc4bb9e0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cc4bb9e0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.254.16/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>11</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Management (MNGMT)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c1a6928a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c1a6928a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d58e46fd8c95424e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d58e46fd8c95424e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n
  <cidrBlock>172.20.32.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>us-east-1a.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5b714610</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5b714610</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.8.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 8</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-062f2f311dfdcbbb0</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-062f2f311dfdcbbb0</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8185</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n
 <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>Name</key>\n
    <value>us-east-1b.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-71cbdf59</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-71cbdf59</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.92.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Database Zone A (DEV-DBZ-A)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n
        <value>dev</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-e1c7cda7</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-e1c7cda7</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.21.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>245</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Front-End Zone C (FEZ-C)</value>\n                </item>\n
 </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-067a3ebf056ee255d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-067a3ebf056ee255d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.8.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>SubnetType</key>\n
    <value>Utility</value>\n                </item>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-05ce1284d1884224e</value>\n                </item>\n                <item>\n
        <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1c.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0c60cc7b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0c60cc7b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.96.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>236</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Back-End Zone B (PROD-BEZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0dfe9dcf6e21f824f</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0dfe9dcf6e21f824f</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c532f7fa</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c532f7fa</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.160.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0ba88fa976afed370</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0ba88fa976afed370</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.0.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 1A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet1A</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-22cbdf0a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-22cbdf0a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.90.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>248</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Demilitarized Zone (DEV-DMZ-A)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>dev</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-c6cadeee</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-c6cadeee</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.91.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>126</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>dev</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Front End Zone A (DEV-FEZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-9d828adb</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-9d828adb</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n
    <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Database Zone C (PROD-DBZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n
  <subnetId>subnet-a5338e99</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-a5338e99</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.105.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>246</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n
          <value>Prod Back-End Zone E (PROD-BEZ-E)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-9a623d96</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-9a623d96</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.128.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8109</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-19deae26</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-19deae26</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 5</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0164371a344c0a135</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0164371a344c0a135</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.224.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-1ce3eb5a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-1ce3eb5a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.0.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>248</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Demilitarized Zone C (PROD-DMZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-06feca3c84bb1f5d8</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-06feca3c84bb1f5d8</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.204.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>eks-2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-951605cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-951605cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.101.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev PII Zone C (DEV-PIZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d961eeb2158dc22b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d961eeb2158dc22b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.128.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4088</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Public subnet 1</value>\n                </item>\n                <item>\n
           <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n
          <value>PublicSubnet1</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Public</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n
</tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e89633ed7580fb17</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e89633ed7580fb17</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0017d1ffe82377211</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0017d1ffe82377211</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.192.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-19af8a7d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-19af8a7d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 4</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-00f14afb31222ab45</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-00f14afb31222ab45</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.144.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4088</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
         <key>Name</key>\n                    <value>Public subnet 2</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Public</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PublicSubnet2</value>\n                </item>\n
      <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-fc7816d3</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-fc7816d3</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-8b1d6eb4</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-8b1d6eb4</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-5</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0e2e51538c1099fc8</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0e2e51538c1099fc8</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.0.0/24</cidrBlock>\n
<ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-02dac12a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-02dac12a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.95.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>249</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
    <key>Name</key>\n                    <value>Dev Redshift Zone (PROD-DBZ-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0b9f9f51d98f2c87c</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0b9f9f51d98f2c87c</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.200.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>eks-1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-bb1ad0cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-bb1ad0cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.93.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>249</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev Database Zone B (DEV-DBZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-66d7b849</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-66d7b849</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.7.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 7</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-37b29a6d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-37b29a6d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.64.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8131</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-952534cc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-952534cc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.99.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod PII Zone C (Prod-PIZ-C)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0be68556</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0be68556</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 3</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-02031852a6683dd71</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-02031852a6683dd71</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.4.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-b19784e9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-b19784e9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.103.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>GnA Front-end Zone</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0413dd7e29aedbe9b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0413dd7e29aedbe9b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.4.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-0f6415c9cead7a6d7</value>\n                </item>\n                <item>\n                    <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1b.dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n                    <value>Utility</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-07839e71cd3b3262d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-07839e71cd3b3262d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.5.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n
  <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0088de7d8794dc77b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0088de7d8794dc77b</subnetArn>\n            <state>available</state>\n
<ownerId>082902060548</ownerId>\n            <vpcId>vpc-005162fef77f9a04b</vpcId>\n            <cidrBlock>172.20.0.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1015</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>AssociatedNatgateway</key>\n                    <value>nat-02a0b830dec64fc07</value>\n                </item>\n                <item>\n                    <key>SubnetType</key>\n
  <value>Utility</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/cluster/dev.k8s.local</key>\n                    <value>owned</value>\n                </item>\n                <item>\n
     <key>KubernetesCluster</key>\n                    <value>dev.k8s.local</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>utility-us-east-1a.dev.k8s.local</value>\n
       </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value>1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5d288f39</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5d288f39</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.192.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8067</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-03a6fb2cf9ba4ca79</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-03a6fb2cf9ba4ca79</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.160.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-cefa47e2</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-cefa47e2</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.106.0/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>11</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev EMR Zone (DEV-EMR-A)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-12ef0165</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-12ef0165</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.10.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>236</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Prod Demilitarized Zone B (PROD-DMZ-B)</value>\n                </item>\n                <item>\n                    <key>Environment</key>\n                    <value>prod</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
   <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-d7586f9c</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-d7586f9c</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-4c3e2a34</vpcId>\n            <cidrBlock>10.20.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**QA-2</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0bffac4bd13d9dddc</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0bffac4bd13d9dddc</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.11.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1e</availabilityZone>\n            <availabilityZoneId>use1-az3</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>VPN Connections 1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d832f99cf2fcaeef</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d832f99cf2fcaeef</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-7fc03c70</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-7fc03c70</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-82b3a6fa</vpcId>\n            <cidrBlock>10.10.9.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1f</availabilityZone>\n            <availabilityZoneId>use1-az5</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>**Production 9</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0abb7e8e4751f6412</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0abb7e8e4751f6412</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.32.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8173</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PrivateSubnet2A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/internal-elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>Private subnet 2A</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>Network</key>\n                    <value>Private</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-5f734573</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-5f734573</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.224.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8097</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>dbc-74d460e4-f7c1</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-f49784ac</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-f49784ac</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.102.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n
<availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>GnA Back-end Zone</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-04ce60707b02a2ee6</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-04ce60707b02a2ee6</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-08d398946592d4d8c</vpcId>\n            <cidrBlock>10.75.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8187</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-51faee79</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-51faee79</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.254.0/28</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>10</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>VPN Zone (ALL-VPNZ)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-3c768f4a</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-3c768f4a</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.100.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>250</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>Dev PII Zone B (DEV-PIZ-B)</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0054c4b2531a99d1d</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0054c4b2531a99d1d</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-20a36945</vpcId>\n            <cidrBlock>10.0.28.0/22</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>1019</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n
         <key>Environment</key>\n                    <value>Production</value>\n                </item>\n                <item>\n                    <key>Name</key>\n                    <value>use-dev-vpn-client1-cidr</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0386c17a70de427a9</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0386c17a70de427a9</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0292a6e9df39e4eeb</vpcId>\n            <cidrBlock>11.0.160.0/20</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>4089</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n
           <value>Public subnet 3</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-name</key>\n                    <value>aws-eks-cluste01-VPCStack-YKM348HEM2MV</value>\n                </item>\n                <item>\n                    <key>aws:cloudformation:logical-id</key>\n                    <value>PublicSubnet3</value>\n                </item>\n                <item>\n                    <key>kubernetes.io/role/elb</key>\n                    <value/>\n                </item>\n                <item>\n                    <key>aws:cloudformation:stack-id</key>\n                    <value>arn:aws:cloudformation:us-east-1:082902060548:stack/aws-eks-cluste01-VPCStack-YKM348HEM2MV/fae3fc10-cf84-11eb-a6f0-0a9888c17b59</value>\n                </item>\n                <item>\n                    <key>eks-cluster</key>\n                    <value>0</value>\n                </item>\n                <item>\n
 <key>Network</key>\n                    <value>Public</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0afb0c41</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0afb0c41</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.96.0/19</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>8177</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-00176788e057a65aa</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-00176788e057a65aa</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.2.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1c</availabilityZone>\n            <availabilityZoneId>use1-az6</availabilityZoneId>\n
 <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-052812620fa9daf22</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-052812620fa9daf22</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-0fbad9655d8d30181</vpcId>\n            <cidrBlock>172.30.3.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1d</availabilityZone>\n            <availabilityZoneId>use1-az1</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-0d1af4617efd0c91e</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-0d1af4617efd0c91e</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-04877195e9e5e36e8</vpcId>\n            <cidrBlock>172.30.1.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1b</availabilityZone>\n            <availabilityZoneId>use1-az4</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>true</mapPublicIpOnLaunch>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n            <mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n        <item>\n            <subnetId>subnet-071193de957767e8b</subnetId>\n            <subnetArn>arn:aws:ec2:us-east-1:082902060548:subnet/subnet-071193de957767e8b</subnetArn>\n            <state>available</state>\n            <ownerId>082902060548</ownerId>\n            <vpcId>vpc-e3d5c69a</vpcId>\n            <cidrBlock>10.73.63.0/24</cidrBlock>\n            <ipv6CidrBlockAssociationSet/>\n            <availableIpAddressCount>251</availableIpAddressCount>\n            <availabilityZone>us-east-1a</availabilityZone>\n            <availabilityZoneId>use1-az2</availabilityZoneId>\n            <defaultForAz>false</defaultForAz>\n            <mapPublicIpOnLaunch>false</mapPublicIpOnLaunch>\n            <tagSet>\n                <item>\n                    <key>Name</key>\n                    <value>dbc-natgw</value>\n                </item>\n            </tagSet>\n            <assignIpv6AddressOnCreation>false</assignIpv6AddressOnCreation>\n
<mapCustomerOwnedIpOnLaunch>false</mapCustomerOwnedIpOnLaunch>\n        </item>\n    </subnetSet>\n</DescribeSubnetsResponse>'
07/08/2021 04:43:00 PM DEBUG    [botocore.hooks] Event needs-retry.ec2.DescribeSubnets: calling handler <botocore.retryhandler.RetryHandler object at 0x7ff360e0cf90>
2021-07-08 16:43:00,000 botocore.hooks [DEBUG] Event needs-retry.ec2.DescribeSubnets: calling handler <botocore.retryhandler.RetryHandler object at 0x7ff360e0cf90>
07/08/2021 04:43:00 PM DEBUG    [botocore.retryhandler] No retry needed.
2021-07-08 16:43:00,001 botocore.retryhandler [DEBUG] No retry needed.
07/08/2021 04:43:00 PM DEBUG    [boto3.resources.factory] Loading ec2:Subnet
2021-07-08 16:43:00,001 boto3.resources.factory [DEBUG] Loading ec2:Subnet
subnet_id                      cidr_block           available       max             real_max        pct_used        in_use
subnet-1ce3eb5a                10.0.0.0/24          248             254             251              1.20            yes
subnet-9d828adb                10.0.1.0/24          250             254             251              0.40            yes
subnet-cdee00ba                10.0.2.0/24          245             254             251              2.39            yes
subnet-12ef0165                10.0.10.0/24         236             254             251              5.98            yes
subnet-0bffac4bd13d9dddc       10.0.11.0/24         251             254             251              0.00            no
subnet-ffa04888                10.0.20.0/24         225             254             251              10.36           yes
subnet-e1c7cda7                10.0.21.0/24         245             254             251              2.39            yes
subnet-0054c4b2531a99d1d       10.0.28.0/22         1019            1022            1019             0.00            no
subnet-22cbdf0a                10.0.90.0/24         248             254             251              1.20            yes
subnet-c6cadeee                10.0.91.0/24         126             254             251              49.80           yes
subnet-71cbdf59                10.0.92.0/24         250             254             251              0.40            yes
subnet-bb1ad0cc                10.0.93.0/24         249             254             251              0.80            yes
subnet-3df5e115                10.0.94.0/24         148             254             251              41.04           yes
subnet-02dac12a                10.0.95.0/24         249             254             251              0.80            yes
subnet-0c60cc7b                10.0.96.0/24         236             254             251              5.98            yes
subnet-435f901a                10.0.97.0/24         246             254             251              1.99            yes
subnet-d746b9a1                10.0.98.0/24         250             254             251              0.40            yes
subnet-952534cc                10.0.99.0/24         250             254             251              0.40            yes
subnet-3c768f4a                10.0.100.0/24        250             254             251              0.40            yes
subnet-951605cc                10.0.101.0/24        250             254             251              0.40            yes
subnet-f49784ac                10.0.102.0/24        251             254             251              0.00            no
subnet-b19784e9                10.0.103.0/24        251             254             251              0.00            no
subnet-2b8b7406                10.0.104.0/24        221             254             251              11.95           yes
subnet-a5338e99                10.0.105.0/24        246             254             251              1.99            yes
subnet-cefa47e2                10.0.106.0/28        11              14              11               0.00            no
subnet-0b9f9f51d98f2c87c       10.0.200.0/22        1019            1022            1019             0.00            no
subnet-06feca3c84bb1f5d8       10.0.204.0/22        1019            1022            1019             0.00            no
subnet-cc4bb9e0                10.0.254.16/28       11              14              11               0.00            no
subnet-51faee79                10.0.254.0/28        10              14              11               9.09            yes
subnet-c8c1aee7                10.10.1.0/24         251             254             251              0.00            no
subnet-c1a6928a                10.10.2.0/24         251             254             251              0.00            no
subnet-0be68556                10.10.3.0/24         251             254             251              0.00            no
subnet-19af8a7d                10.10.4.0/24         251             254             251              0.00            no
subnet-19deae26                10.10.5.0/24         251             254             251              0.00            no
subnet-a9e01ca6                10.10.6.0/24         251             254             251              0.00            no
subnet-66d7b849                10.10.7.0/24         251             254             251              0.00            no
subnet-5b714610                10.10.8.0/24         251             254             251              0.00            no
subnet-7fc03c70                10.10.9.0/24         251             254             251              0.00            no
subnet-fc7816d3                10.20.1.0/24         251             254             251              0.00            no
subnet-d7586f9c                10.20.2.0/24         251             254             251              0.00            no
subnet-0f395b52                10.20.3.0/24         251             254             251              0.00            no
subnet-68526523                10.20.4.0/24         251             254             251              0.00            no
subnet-8b1d6eb4                10.20.5.0/24         251             254             251              0.00            no
subnet-071193de957767e8b       10.73.63.0/24        251             254             251              0.00            no
subnet-37b29a6d                10.73.64.0/19        8131            8190            8187             0.68            yes
subnet-0afb0c41                10.73.96.0/19        8177            8190            8187             0.12            yes
subnet-9a623d96                10.73.128.0/19       8109            8190            8187             0.95            yes
subnet-c532f7fa                10.73.160.0/19       8187            8190            8187             0.00            no
subnet-5d288f39                10.73.192.0/19       8067            8190            8187             1.47            yes
subnet-5f734573                10.73.224.0/19       8097            8190            8187             1.10            yes
subnet-05c9d8803a57678e3       10.75.64.0/19        8187            8190            8187             0.00            no
subnet-04ce60707b02a2ee6       10.75.96.0/19        8187            8190            8187             0.00            no
subnet-064d6d3216eb009f9       10.75.128.0/19       8187            8190            8187             0.00            no
subnet-03a6fb2cf9ba4ca79       10.75.160.0/19       8187            8190            8187             0.00            no
subnet-0017d1ffe82377211       10.75.192.0/19       8187            8190            8187             0.00            no
subnet-0164371a344c0a135       10.75.224.0/19       8187            8190            8187             0.00            no
subnet-0ba88fa976afed370       11.0.0.0/19          8173            8190            8187             0.17            yes
subnet-0abb7e8e4751f6412       11.0.32.0/19         8173            8190            8187             0.17            yes
subnet-0e30e59e5bb267ee0       11.0.64.0/19         8173            8190            8187             0.17            yes
subnet-0d961eeb2158dc22b       11.0.128.0/20        4088            4094            4091             0.07            yes
subnet-00f14afb31222ab45       11.0.144.0/20        4088            4094            4091             0.07            yes
subnet-0386c17a70de427a9       11.0.160.0/20        4089            4094            4091             0.05            yes
subnet-0088de7d8794dc77b       172.20.0.0/22        1015            1022            1019             0.39            yes
subnet-0413dd7e29aedbe9b       172.20.4.0/22        1015            1022            1019             0.39            yes
subnet-067a3ebf056ee255d       172.20.8.0/22        1015            1022            1019             0.39            yes
subnet-0d58e46fd8c95424e       172.20.32.0/19       8185            8190            8187             0.02            yes
subnet-062f2f311dfdcbbb0       172.20.64.0/19       8185            8190            8187             0.02            yes
subnet-0abc707b29ebd644e       172.20.96.0/19       8185            8190            8187             0.02            yes
subnet-06086d1272f85e8f6       172.30.0.0/24        251             254             251              0.00            no
subnet-0e2e51538c1099fc8       172.30.0.0/24        251             254             251              0.00            no
subnet-0d1acf3894b05e2e4       172.30.1.0/24        251             254             251              0.00            no
subnet-0d1af4617efd0c91e       172.30.1.0/24        251             254             251              0.00            no
subnet-0c24e672c552342ee       172.30.2.0/24        251             254             251              0.00            no
subnet-00176788e057a65aa       172.30.2.0/24        251             254             251              0.00            no
subnet-0d832f99cf2fcaeef       172.30.3.0/24        251             254             251              0.00            no
subnet-052812620fa9daf22       172.30.3.0/24        251             254             251              0.00            no
subnet-0e89633ed7580fb17       172.30.4.0/24        251             254             251              0.00            no
subnet-02031852a6683dd71       172.30.4.0/24        251             254             251              0.00            no
subnet-0dfe9dcf6e21f824f       172.30.5.0/24        251             254             251              0.00            no
subnet-07839e71cd3b3262d       172.30.5.0/24        251             254             251              0.00            no

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:10 (7 by maintainers)

github_iconTop GitHub Comments

2reactions
stobrien89commented, Sep 2, 2021

Hi @bubthegreat,

I was able to clarify that the client CIDR pool configured on the client VPN endpoint is different from the VPC CIDRs. The client VPN doesn’t allow the association of a subnet that overlaps with the client CIDR pool on the client VPN endpoint, so there are no routing conflicts with the two independent CIDRS.

  • Client VPN uses IPs from the client CIDR pool to allocate to the end-users connected to the CVPN endpoint.

  • Client VPN uses IPs from the subnet CIDR pool to allocate to each individual VPN server backing the CVPN endpoint association.

All traffic from the end-users is source-NATed to one of the subnet IPs used by the VPN servers backing the client VPN endpoint/association.

I hope this clears up any confusion, but let us know if you have any additional questions!

1reaction
stobrien89commented, Jul 10, 2021

Hi @bubthegreat,

Thanks for reaching out! I’ll submit an internal ticket to the EC2 team to get further guidance on this. I’d expect an update by early next week, but I’ll keep you posted.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Error codes for the Amazon EC2 API - AWS Documentation
Use the DescribeSubnets request to view how many IP addresses are available (unused) in your subnet. IP addresses associated with stopped instances are ......
Read more >
Reserve a static external IP address - Google Cloud
Discover how to reserve, assign, and change static external ip addresses to a new or existing instance through this Google Cloud guide.
Read more >
EC2 instances should not have a public IP association (IPv4)
Navigate to the VPC console. In the navigation pane, choose Subnets. Select your subnet and choose Subnet Actions, Modify auto-assign IP settings.
Read more >
ENI Archives - Jayendra's Cloud Certification Blog
Create a VPC instance, which will have multiple subnets attached to it and each will have a separate IP address. Your system automatically...
Read more >
EC2 — Boto3 Docs 1.26.32 documentation - AWS
The carrier IP address. This option is only available for network interfaces which reside in a subnet in a Wavelength Zone (for example...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found