diff --git a/CHANGELOG.md b/CHANGELOG.md index 344ab673..1075306b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,5 +4,17 @@ All notable changes to this project are documented in this file. Based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.1] - 2020-09-29 + +- Added 'Save Template' option when importing new accounts and Regions. This removes the need to enable public access objects in the AmplifyStorageBucket +- Altered wording around visibility levels when saving architecture diagrams. 'You' and 'All users' is now used instead of 'public' and 'private'. +- Fixed bug that was causing import configurations to become corrupt when an account or Region was deleted by the UI if a discovery was in progress. +- Fixed bug leading to invalid JSON being generated in CloudFormation templates for importing accounts and Regions. +- Fixed Dependabot issues raised by GitHub +- Fixed bug leading to RestApi icons not being displayed in Firefox. +- Added support for Amazon QLDB Ledgers. +- Updated README. + ## [1.0.0] - 2020-09-21 + - Initial release \ No newline at end of file diff --git a/README.md b/README.md index f2964718..3e2dc3c6 100644 --- a/README.md +++ b/README.md @@ -157,11 +157,11 @@ fi cd deployment ./build-s3-dist.sh $DIST_OUTPUT_BUCKET $SOLUTION_NAME $VERSION $IMAGE_TAG aws cloudformation package --template-file "global-s3-assets/perspective-setup.template" --s3-bucket "$DIST_OUTPUT_BUCKET" --s3-prefix "${SOLUTION_NAME}/${VERSION}" --output-template-file packaged.template -aws s3 cp packaged.template "s3://${DIST_OUTPUT_BUCKET}-${AWS_REGION}/${SOLUTION_NAME}/${VERSION}/aws-perspective.template" +aws s3 cp packaged.template "s3://${DIST_OUTPUT_BUCKET}/${SOLUTION_NAME}/${VERSION}/aws-perspective.template" aws s3 cp global-s3-assets s3://${DIST_OUTPUT_BUCKET}-${AWS_REGION}/${SOLUTION_NAME}/${VERSION}/ --recursive --acl bucket-owner-full-control aws s3 cp regional-s3-assets s3://${DIST_OUTPUT_BUCKET}-${AWS_REGION}/${SOLUTION_NAME}/${VERSION}/ --recursive --acl bucket-owner-full-control -echo "You can now deploy using this template URL https://${DIST_OUTPUT_BUCKET}-${AWS_REGION}.s3.${AWS_REGION}.amazonaws.com/${SOLUTION_NAME}/${VERSION}/aws-perspective.template" +echo "You can now deploy using this template URL https://${DIST_OUTPUT_BUCKET}.s3.${AWS_REGION}.amazonaws.com/${SOLUTION_NAME}/${VERSION}/aws-perspective.template" ``` diff --git a/deployment/build-open-source-dist.sh b/deployment/build-open-source-dist.sh new file mode 100755 index 00000000..ab03b73d --- /dev/null +++ b/deployment/build-open-source-dist.sh @@ -0,0 +1,76 @@ +#!/bin/bash +# +# This assumes all of the OS-level configuration has been completed and git repo has already been cloned +# +# This script should be run from the repo's deployment directory +# cd deployment +# ./build-s3-dist.sh solution-name +# +# Paramenters: +# - solution-name: name of the solution for consistency + +# Check to see if input has been provided: +if [ -z "$1" ]; then + echo "Please provide the trademark approved solution name for the open source package." + echo "For example: ./build-s3-dist.sh trademarked-solution-name" + exit 1 +fi + +# Get reference for all important folders +source_template_dir="$PWD" +dist_dir="$source_template_dir/open-source" +dist_template_dir="$dist_dir/deployment" +source_dir="$source_template_dir/../source" + +echo "------------------------------------------------------------------------------" +echo "[Init] Clean old open-source folder" +echo "------------------------------------------------------------------------------" +echo "rm -rf $dist_dir" +rm -rf $dist_dir +echo "mkdir -p $dist_dir" +mkdir -p $dist_dir +echo "mkdir -p $dist_template_dir" +mkdir -p $dist_template_dir + +# echo "------------------------------------------------------------------------------" +# echo "[Packing] Templates" +# echo "------------------------------------------------------------------------------" +# echo "cp $source_template_dir/cfn/templates/*.yaml $dist_template_dir/" +# cp $source_template_dir/*.yaml $dist_template_dir/ +# echo "copy yaml templates and rename" +# cp $source_template_dir/*.yaml $dist_template_dir/ +# cd $dist_template_dir +# # aws cloudformation package --template-file "$template" --s3-bucket "$BUCKET" --s3-prefix "${project}/${version}" --output-template-file packaged.template + +# # Rename all *.yaml to *.template +# for f in *.yaml; do +# mv -- "$f" "${f%.yaml}.template" +# done + +# echo "------------------------------------------------------------------------------" +# echo "[Packing] Build Script" +# echo "------------------------------------------------------------------------------" +# echo "cp $source_template_dir/build-s3-dist.sh $dist_template_dir" +# cp $source_template_dir/build-s3-dist.sh $dist_template_dir +# echo "cp $source_template_dir/run-unit-tests.sh $dist_template_dir" +# cp $source_template_dir/run-unit-tests.sh $dist_template_dir + +# echo "------------------------------------------------------------------------------" +# echo "[Packing] Create GitHub (open-source) zip file" +# echo "------------------------------------------------------------------------------" +# echo "cd $dist_dir" +# cd $dist_dir +# echo "zip -q -r9 ../$1.zip *" +# zip -q -r9 ../$1.zip * +# echo "Clean up open-source folder" +# echo "rm -rf *" +# rm -rf * +# echo "mv ../$1.zip ." +# mv ../$1.zip . +# echo "Completed building $1.zip dist" +echo "installing handy little lib called gitzip to create a zip based on our .gitignore" +npm i -g gitzip +echo "moving to root to generate zip file" +cd ../ +echo "generating the zip using gitzip and ensuring exclusions are ignored as they do not need to be in GitHub" +gitzip -d $dist_dir/$1.zip -x .taskcat.yml buildspec.yml .viperlight* aws-perspective-params.json taskcat-bucket-management.sh taskcat-buildspec.yaml diff --git a/deployment/perspective-setup.template b/deployment/perspective-setup.yaml similarity index 100% rename from deployment/perspective-setup.template rename to deployment/perspective-setup.yaml diff --git a/source/backend/discovery/combined.log b/source/backend/discovery/combined.log deleted file mode 100644 index 04fa8646..00000000 --- a/source/backend/discovery/combined.log +++ /dev/null @@ -1,2 +0,0 @@ -{"level":"info","message":"processing file: "} -{"message":"InstanceId = i-0394ef01caae786d8","level":"info"} diff --git a/source/backend/discovery/src/discovery/discovery-service.js b/source/backend/discovery/src/discovery/discovery-service.js index 8503e272..aafb7da5 100644 --- a/source/backend/discovery/src/discovery/discovery-service.js +++ b/source/backend/discovery/src/discovery/discovery-service.js @@ -51,7 +51,8 @@ class DiscoveryService { "AWS::KMS::Key", "AWS::CodeBuild::Project", "AWS::CodePipeline::Pipeline", - "AWS::SQS::Queue" + "AWS::SQS::Queue", + "AWS::QLDB::Ledger" ]; // Scan in all resources in parallel diff --git a/source/backend/functions/api/package-lock.json b/source/backend/functions/api/package-lock.json index 6431d597..300631e3 100644 --- a/source/backend/functions/api/package-lock.json +++ b/source/backend/functions/api/package-lock.json @@ -553,9 +553,9 @@ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" }, "aws-sdk": { - "version": "2.759.0", - "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.759.0.tgz", - "integrity": "sha512-XTmt6b8NfluqmixO18Bu9ZttZMW9rwEDVO+XITsIQ5dZvLectwrjlbEn2refudJI1Y2pxLguw+tABvXi1wtbbQ==", + "version": "2.762.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.762.0.tgz", + "integrity": "sha512-9vpHJbV1n23at2XG+6PDqHsG4JggdosFlcO1glvpXhjuwk1x8NCOwf/ddeXs6YxD6+/Kfj3AP216UaLP0iYxUA==", "dev": true, "requires": { "buffer": "4.9.2", diff --git a/source/backend/functions/api/src/account-import-template.template b/source/backend/functions/api/src/account-import-template.template index 77012c06..fa47d62b 100644 --- a/source/backend/functions/api/src/account-import-template.template +++ b/source/backend/functions/api/src/account-import-template.template @@ -134,11 +134,11 @@ Resources: } }, { - "Sid": "HttpsOnly" - "Action": "*" + "Sid": "HttpsOnly", + "Action": "*", "Effect": "Deny", "Resource": "arn:aws:s3:::${ConfigBucket}/*", - "Principal": '*' + "Principal": "*", "Condition": { "Bool": { "aws:SecureTransport": "false" diff --git a/source/backend/functions/api/src/account-region-template.template b/source/backend/functions/api/src/account-region-template.template index 2b7610eb..f348e939 100644 --- a/source/backend/functions/api/src/account-region-template.template +++ b/source/backend/functions/api/src/account-region-template.template @@ -120,11 +120,11 @@ Resources: } }, { - "Sid": "HttpsOnly" - "Action": "*" + "Sid": "HttpsOnly", + "Action": "*", "Effect": "Deny", "Resource": "arn:aws:s3:::${ConfigBucket}/*", - "Principal": '*' + "Principal": "*", "Condition": { "Bool": { "aws:SecureTransport": "false" diff --git a/source/backend/functions/cost-parser/costParser.js b/source/backend/functions/cost-parser/costParser.js index 0a4c608e..4d0ae822 100644 --- a/source/backend/functions/cost-parser/costParser.js +++ b/source/backend/functions/cost-parser/costParser.js @@ -251,12 +251,12 @@ const getDateThreshold = (lineItems) => { const mergeRecord = (newRecord, oldRecord) => { let modified = false; - let dateThreshold = getDateThreshold(oldRecord.lineItems); - //console.log(dateThreshold) + let dateTheshold = getDateThreshold(oldRecord.lineItems); + //console.log(dateTheshold) newRecord.lineItems.forEach(newElement => { - if (new Date(newElement.startBillingInterval) > dateThreshold) { + if (new Date(newElement.startBillingInterval) > dateTheshold) { //console.log("adding record"); //console.log(util.inspect(newElement, { depth: 10 })); oldRecord.lineItems.push(newElement); @@ -277,7 +277,7 @@ const handleLineData = (line) => { addKeyToObject(data, "lineItemId", columns[0]); - let timeInterval = separateDates(columns[1]); + let timeInterval = seperateDates(columns[1]); addKeyToObject(data, "startBillingInterval", timeInterval[0]); addKeyToObject(data, "endBillingInterval", timeInterval[1]); @@ -332,7 +332,7 @@ const getDayOfYear = (inputDate) => { return day; } -const separateDates = (dateString) => { +const seperateDates = (dateString) => { return dateString.split("/"); } diff --git a/source/backend/functions/drawio/test-events/basicVpc.json b/source/backend/functions/drawio/test-events/basicVpc.json deleted file mode 100644 index ba271448..00000000 --- a/source/backend/functions/drawio/test-events/basicVpc.json +++ /dev/null @@ -1,2221 +0,0 @@ -{ - "elements": { - "nodes": [ - { - "data": { - "id": "XXXXXXXXXXXX-undefined", - "level": 0, - "title": "XXXXXXXXXXXX", - "label": "XXXXXXXXXXXX - $0", - "type": "account", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "us-east-1", - "type": "region", - "children": [ - { - "label": "vpc-a5f5d9df", - "type": "vpc", - "id": "5699e220f7441bf0566d5ce94e8c9a89", - "data": { - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "vpc-a5f5d9df", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-ee08c194\",\"state\":\"available\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-45d1e829\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[]}", - "title": "vpc-a5f5d9df", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a5f5d9df", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.799Z", - "tags": "{}", - "configurationStateId": "1580404321799", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "dhcpOptionsId": "dopt-ee08c194", - "resourceType": "AWS::EC2::VPC" - }, - "id": "5699e220f7441bf0566d5ce94e8c9a89", - "perspectiveBirthDate": "2020-01-30T17:16:29.292Z", - "label": "AWS::EC2::VPC", - "costData": [] - }, - "children": [ - { - "label": "Multiple Availability Zones", - "type": "availabilityZone", - "children": [ - { - "label": "NetworkAcl", - "type": "type", - "children": [ - { - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "label": "AWS::EC2::NetworkAcl", - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "us-east-1c", - "type": "availabilityZone", - "children": [ - { - "label": "subnet-4a802307", - "type": "subnet", - "id": "a688d6c4d881d58d7d6104d195bdd792", - "data": { - "properties": { - "subnetId": "subnet-4a802307", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-4a802307", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4a802307\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307\",\"outpostArn\":null}", - "title": "subnet-4a802307", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "a688d6c4d881d58d7d6104d195bdd792", - "perspectiveBirthDate": "2020-01-30T17:16:30.128Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 757.5836558276022, - "y": 335.5787454769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "account removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-east-1", - "label": "us-east-1 - $0", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "vpc-a5f5d9df", - "type": "vpc", - "id": "5699e220f7441bf0566d5ce94e8c9a89", - "data": { - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "vpc-a5f5d9df", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-ee08c194\",\"state\":\"available\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-45d1e829\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[]}", - "title": "vpc-a5f5d9df", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a5f5d9df", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.799Z", - "tags": "{}", - "configurationStateId": "1580404321799", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "dhcpOptionsId": "dopt-ee08c194", - "resourceType": "AWS::EC2::VPC" - }, - "id": "5699e220f7441bf0566d5ce94e8c9a89", - "perspectiveBirthDate": "2020-01-30T17:16:29.292Z", - "label": "AWS::EC2::VPC", - "costData": [] - }, - "children": [ - { - "label": "Multiple Availability Zones", - "type": "availabilityZone", - "children": [ - { - "label": "NetworkAcl", - "type": "type", - "children": [ - { - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "label": "AWS::EC2::NetworkAcl", - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "us-east-1c", - "type": "availabilityZone", - "children": [ - { - "label": "subnet-4a802307", - "type": "subnet", - "id": "a688d6c4d881d58d7d6104d195bdd792", - "data": { - "properties": { - "subnetId": "subnet-4a802307", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-4a802307", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4a802307\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307\",\"outpostArn\":null}", - "title": "subnet-4a802307", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "a688d6c4d881d58d7d6104d195bdd792", - "perspectiveBirthDate": "2020-01-30T17:16:30.128Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 757.5836558276022, - "y": 335.5787454769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "id": "5699e220f7441bf0566d5ce94e8c9a89", - "title": "vpc-a5f5d9df", - "label": "vpc-a5f5d9df - $0", - "shape": "image", - "type": "vpc", - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "5699e220f7441bf0566d5ce94e8c9a89", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC.e0524c56.svg", - "cost": 0, - "resource": { - "id": "vpc-a5f5d9df", - "type": "AWS::EC2::VPC", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a5f5d9df", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "vpc-a5f5d9df", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-ee08c194\",\"state\":\"available\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-45d1e829\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[]}", - "title": "vpc-a5f5d9df", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a5f5d9df", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.799Z", - "tags": "{}", - "configurationStateId": "1580404321799", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "dhcpOptionsId": "dopt-ee08c194", - "resourceType": "AWS::EC2::VPC" - }, - "children": [ - { - "label": "Multiple Availability Zones", - "type": "availabilityZone", - "children": [ - { - "label": "NetworkAcl", - "type": "type", - "children": [ - { - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "label": "AWS::EC2::NetworkAcl", - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "us-east-1c", - "type": "availabilityZone", - "children": [ - { - "label": "subnet-4a802307", - "type": "subnet", - "id": "a688d6c4d881d58d7d6104d195bdd792", - "data": { - "properties": { - "subnetId": "subnet-4a802307", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-4a802307", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4a802307\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307\",\"outpostArn\":null}", - "title": "subnet-4a802307", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "a688d6c4d881d58d7d6104d195bdd792", - "perspectiveBirthDate": "2020-01-30T17:16:30.128Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0 - } - ], - "aZColour": "#00A1C9" - }, - "position": { - "x": 757.5836558276022, - "y": 335.5787454769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll" - }, - { - "data": { - "id": "Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "Multiple Availability Zones", - "label": "Multiple Availability Zones - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "NetworkAcl", - "type": "type", - "children": [ - { - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "label": "AWS::EC2::NetworkAcl", - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 657.6673031552045, - "y": 200.5787424769258 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkAcl-Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "title": "NetworkAcl", - "label": "NetworkAcl - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "label": "AWS::EC2::NetworkAcl", - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 586.1673016552045, - "y": 200.57874247692575 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "level": 5, - "id": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "title": "acl-8533a4f8", - "label": "acl-8533a4f8...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "e0b9fae57b2574b61d57d1b8d2d2ed17", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "resource": { - "id": "acl-8533a4f8", - "type": "AWS::EC2::NetworkAcl", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "acl-8533a4f8", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-2ebad660\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-03435f5f\"},{\"networkAclAssociationId\":\"aclassoc-2cbad662\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-72a2777c\"},{\"networkAclAssociationId\":\"aclassoc-2fbad661\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-e2f0d7dc\"},{\"networkAclAssociationId\":\"aclassoc-10bad65e\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-0cbbab6b\"},{\"networkAclAssociationId\":\"aclassoc-11bad65f\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-4a802307\"},{\"networkAclAssociationId\":\"aclassoc-2dbad663\",\"networkAclId\":\"acl-8533a4f8\",\"subnetId\":\"subnet-77d2cc59\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-8533a4f8\",\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "acl-8533a4f8", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.440Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "configurationStateId": "1580404322440", - "accountId": "XXXXXXXXXXXX", - "isDefault": "true", - "perspectiveBirthDate": "2020-01-30T17:16:29.433Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-8533a4f8", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 586.1673016552045, - "y": 200.57874247692575 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "InternetGateway-Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "title": "InternetGateway", - "label": "InternetGateway - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "9ee0dc503e591bcd6d7582d4a094dc51", - "perspectiveBirthDate": "2020-01-30T17:16:30.988Z", - "label": "AWS::EC2::InternetGateway", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "igw-3b8c1f40", - "configuration": "{\"attachments\":[{\"state\":\"available\",\"vpcId\":\"vpc-a5f5d9df\"}],\"internetGatewayId\":\"igw-3b8c1f40\",\"ownerId\":\"XXXXXXXXXXXX\",\"tags\":[]}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "igw-3b8c1f40", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.125Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "configurationStateId": "1580404322125", - "accountId": "XXXXXXXXXXXX", - "perspectiveBirthDate": "2020-01-30T17:16:30.988Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-3b8c1f40", - "resourceType": "AWS::EC2::InternetGateway" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 729.1673046552045, - "y": 200.5787424769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "InternetGateway-Multiple Availability Zones-5699e220f7441bf0566d5ce94e8c9a89", - "level": 5, - "id": "9ee0dc503e591bcd6d7582d4a094dc51", - "title": "igw-3b8c1f40", - "label": "igw-3b8c1f40...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "9ee0dc503e591bcd6d7582d4a094dc51", - "image": "/static/media/Amazon-VPC_Internet-Gateway_light-bg.79da6fce.svg", - "cost": 0, - "resource": { - "id": "igw-3b8c1f40", - "type": "AWS::EC2::InternetGateway", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-3b8c1f40", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "igw-3b8c1f40", - "configuration": "{\"attachments\":[{\"state\":\"available\",\"vpcId\":\"vpc-a5f5d9df\"}],\"internetGatewayId\":\"igw-3b8c1f40\",\"ownerId\":\"XXXXXXXXXXXX\",\"tags\":[]}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "igw-3b8c1f40", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:02.125Z", - "availabilityZone": "Multiple Availability Zones", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "configurationStateId": "1580404322125", - "accountId": "XXXXXXXXXXXX", - "perspectiveBirthDate": "2020-01-30T17:16:30.988Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-3b8c1f40", - "resourceType": "AWS::EC2::InternetGateway" - } - }, - "position": { - "x": 729.1673046552045, - "y": 200.5787424769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1f-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1f", - "label": "us-east-1f - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-72a2777c", - "type": "subnet", - "id": "ef21ee67c6f79ff774da573e97a14b11", - "data": { - "properties": { - "subnetId": "subnet-72a2777c", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-72a2777c", - "configuration": "{\"availabilityZone\":\"us-east-1f\",\"availabilityZoneId\":\"use1-az5\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.64.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-72a2777c\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-72a2777c\",\"outpostArn\":null}", - "title": "subnet-72a2777c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1f", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-72a2777c", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.64.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "ef21ee67c6f79ff774da573e97a14b11", - "perspectiveBirthDate": "2020-01-30T17:16:30.351Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 902.1673086552045, - "y": 170.5787414769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1f-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "ef21ee67c6f79ff774da573e97a14b11", - "title": "subnet-72a2777c", - "label": "subnet-72a27...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "ef21ee67c6f79ff774da573e97a14b11", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-72a2777c", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-72a2777c", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-72a2777c", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-72a2777c", - "configuration": "{\"availabilityZone\":\"us-east-1f\",\"availabilityZoneId\":\"use1-az5\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.64.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-72a2777c\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-72a2777c\",\"outpostArn\":null}", - "title": "subnet-72a2777c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1f", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-72a2777c", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.64.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 902.1673086552045, - "y": 170.5787414769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "RouteTable-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "RouteTable", - "label": "RouteTable - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "fad857a15b5c72446930c0b52738af72", - "perspectiveBirthDate": "2020-01-30T17:16:31.172Z", - "label": "AWS::EC2::RouteTable", - "properties": { - "associations": "[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-c9e5feb7\",\"routeTableId\":\"rtb-ca218ab4\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "rtb-ca218ab4", - "configuration": "{\"associations\":[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-c9e5feb7\",\"routeTableId\":\"rtb-ca218ab4\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-ca218ab4\",\"routes\":[{\"destinationCidrBlock\":\"172.31.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null},{\"destinationCidrBlock\":\"0.0.0.0/0\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"igw-3b8c1f40\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRoute\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-ca218ab4", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.521Z", - "availabilityZone": "Not Applicable", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "configurationStateId": "1580404321521", - "accountId": "XXXXXXXXXXXX", - "perspectiveBirthDate": "2020-01-30T17:16:31.172Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-ca218ab4", - "resourceType": "AWS::EC2::RouteTable" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1045.1673116552045, - "y": 246.69694622002294 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "RouteTable-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "fad857a15b5c72446930c0b52738af72", - "title": "rtb-ca218ab4", - "label": "rtb-ca218ab4...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "fad857a15b5c72446930c0b52738af72", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "resource": { - "id": "rtb-ca218ab4", - "type": "AWS::EC2::RouteTable", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-ca218ab4", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-c9e5feb7\",\"routeTableId\":\"rtb-ca218ab4\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "rtb-ca218ab4", - "configuration": "{\"associations\":[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-c9e5feb7\",\"routeTableId\":\"rtb-ca218ab4\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-ca218ab4\",\"routes\":[{\"destinationCidrBlock\":\"172.31.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null},{\"destinationCidrBlock\":\"0.0.0.0/0\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"igw-3b8c1f40\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRoute\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[],\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-ca218ab4", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.521Z", - "availabilityZone": "Not Applicable", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "configurationStateId": "1580404321521", - "accountId": "XXXXXXXXXXXX", - "perspectiveBirthDate": "2020-01-30T17:16:31.172Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "vpcId": "vpc-a5f5d9df", - "relatedEvents": "[]", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-ca218ab4", - "resourceType": "AWS::EC2::RouteTable" - } - }, - "position": { - "x": 1045.1673116552045, - "y": 246.69694622002297 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1c-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1c", - "label": "us-east-1c - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-4a802307", - "type": "subnet", - "id": "a688d6c4d881d58d7d6104d195bdd792", - "data": { - "properties": { - "subnetId": "subnet-4a802307", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-4a802307", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4a802307\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307\",\"outpostArn\":null}", - "title": "subnet-4a802307", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "a688d6c4d881d58d7d6104d195bdd792", - "perspectiveBirthDate": "2020-01-30T17:16:30.128Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 615.9256374935532, - "y": 376.8287464769257 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll" - }, - { - "data": { - "parent": "us-east-1c-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "a688d6c4d881d58d7d6104d195bdd792", - "title": "subnet-4a802307", - "label": "subnet-4a802...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "a688d6c4d881d58d7d6104d195bdd792", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-4a802307", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-4a802307", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-4a802307", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4a802307\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307\",\"outpostArn\":null}", - "title": "subnet-4a802307", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4a802307", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 615.9256374935532, - "y": 373.5787464769257 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource undefined highlight image selectable hoverover" - }, - { - "data": { - "id": "us-east-1a-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-0cbbab6b", - "type": "subnet", - "id": "c1ed0f9755e3c764f0a23575125a2a84", - "data": { - "properties": { - "subnetId": "subnet-0cbbab6b", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-0cbbab6b", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.0.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0cbbab6b\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0cbbab6b\",\"outpostArn\":null}", - "title": "subnet-0cbbab6b", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0cbbab6b", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "c1ed0f9755e3c764f0a23575125a2a84", - "perspectiveBirthDate": "2020-01-30T17:16:29.933Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 759.1673056552027, - "y": 373.5787464769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1a-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "c1ed0f9755e3c764f0a23575125a2a84", - "title": "subnet-0cbbab6b", - "label": "subnet-0cbba...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "c1ed0f9755e3c764f0a23575125a2a84", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-0cbbab6b", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0cbbab6b", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0cbbab6b", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-0cbbab6b", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.0.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0cbbab6b\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0cbbab6b\",\"outpostArn\":null}", - "title": "subnet-0cbbab6b", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0cbbab6b", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 759.1673056552027, - "y": 373.5787464769259 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1e-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1e", - "label": "us-east-1e - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-e2f0d7dc", - "type": "subnet", - "id": "deb0e9c1224fce992d344ac3debd4f0a", - "data": { - "properties": { - "subnetId": "subnet-e2f0d7dc", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-e2f0d7dc", - "configuration": "{\"availabilityZone\":\"us-east-1e\",\"availabilityZoneId\":\"use1-az3\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.48.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-e2f0d7dc\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-e2f0d7dc\",\"outpostArn\":null}", - "title": "subnet-e2f0d7dc", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1e", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-e2f0d7dc", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.48.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "deb0e9c1224fce992d344ac3debd4f0a", - "perspectiveBirthDate": "2020-01-30T17:16:30.787Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 470, - "y": 350 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1e-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "deb0e9c1224fce992d344ac3debd4f0a", - "title": "subnet-e2f0d7dc", - "label": "subnet-e2f0d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "deb0e9c1224fce992d344ac3debd4f0a", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-e2f0d7dc", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-e2f0d7dc", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-e2f0d7dc", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-e2f0d7dc", - "configuration": "{\"availabilityZone\":\"us-east-1e\",\"availabilityZoneId\":\"use1-az3\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.48.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-e2f0d7dc\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-e2f0d7dc\",\"outpostArn\":null}", - "title": "subnet-e2f0d7dc", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1e", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-e2f0d7dc", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.48.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 470, - "y": 350 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1d-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1d", - "label": "us-east-1d - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-03435f5f", - "type": "subnet", - "id": "3c8f5dffb07d172262b5d69b6c87d266", - "data": { - "properties": { - "subnetId": "subnet-03435f5f", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-03435f5f", - "configuration": "{\"availabilityZone\":\"us-east-1d\",\"availabilityZoneId\":\"use1-az6\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.32.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-03435f5f\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03435f5f\",\"outpostArn\":null}", - "title": "subnet-03435f5f", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1d", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03435f5f", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.32.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "3c8f5dffb07d172262b5d69b6c87d266", - "perspectiveBirthDate": "2020-01-30T17:16:29.707Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1003.817520141577, - "y": 456.57874747692586 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1d-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "3c8f5dffb07d172262b5d69b6c87d266", - "title": "subnet-03435f5f", - "label": "subnet-03435...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "3c8f5dffb07d172262b5d69b6c87d266", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-03435f5f", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03435f5f", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-03435f5f", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-03435f5f", - "configuration": "{\"availabilityZone\":\"us-east-1d\",\"availabilityZoneId\":\"use1-az6\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.32.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-03435f5f\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03435f5f\",\"outpostArn\":null}", - "title": "subnet-03435f5f", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1d", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03435f5f", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.32.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1003.817520141577, - "y": 456.57874747692586 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1b-5699e220f7441bf0566d5ce94e8c9a89", - "parent": "5699e220f7441bf0566d5ce94e8c9a89", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "subnet-77d2cc59", - "type": "subnet", - "id": "9bb3a366efd94d733966cc36e5b9e181", - "data": { - "properties": { - "subnetId": "subnet-77d2cc59", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-77d2cc59", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.80.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-77d2cc59\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-77d2cc59\",\"outpostArn\":null}", - "title": "subnet-77d2cc59", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-77d2cc59", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.80.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - }, - "id": "9bb3a366efd94d733966cc36e5b9e181", - "perspectiveBirthDate": "2020-01-30T17:16:30.570Z", - "label": "AWS::EC2::Subnet", - "costData": [] - }, - "children": [], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 653.6120501026026, - "y": 516.578749476926 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-5699e220f7441bf0566d5ce94e8c9a89", - "level": 4, - "id": "9bb3a366efd94d733966cc36e5b9e181", - "title": "subnet-77d2cc59", - "label": "subnet-77d2c...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "9bb3a366efd94d733966cc36e5b9e181", - "state": { - "icon": "/static/media/status-positive.9a7972e8.svg", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.9849711f.svg", - "cost": 0, - "resource": { - "id": "subnet-77d2cc59", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-77d2cc59", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-77d2cc59", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "subnet-77d2cc59", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.80.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-77d2cc59\",\"vpcId\":\"vpc-a5f5d9df\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-77d2cc59\",\"outpostArn\":null}", - "title": "subnet-77d2cc59", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a5f5d9df", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-77d2cc59", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.80.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-01-30T17:12:01.633Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404321633", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 653.6120501026026, - "y": 516.578749476926 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - } - ], - "edges": [ - { - "data": { - "id": "deb0e9c1224fce992d344ac3debd4f0a-e0b9fae57b2574b61d57d1b8d2d2ed17", - "source": "deb0e9c1224fce992d344ac3debd4f0a", - "target": "e0b9fae57b2574b61d57d1b8d2d2ed17" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a688d6c4d881d58d7d6104d195bdd792-e0b9fae57b2574b61d57d1b8d2d2ed17", - "source": "a688d6c4d881d58d7d6104d195bdd792", - "target": "e0b9fae57b2574b61d57d1b8d2d2ed17" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "highlight" - } - ] - }, - "style": [ - { - "selector": ".image", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "1", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(170,183,184)" - } - }, - { - "selector": ".vpc", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-4.5", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(104,61,194)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(104,61,194)", - "text-background-color": "rgb(104,61,194)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(20,126,186)", - "text-background-opacity": "1", - "text-border-color": "rgb(20,126,186)", - "text-background-color": "rgb(20,126,186)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".type", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "text-background-padding": "3px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(regionColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(regionColour)", - "text-background-color": "data(regionColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "dashed", - "border-width": "1px", - "border-color": "rgb(247,153,31)", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(247,153,31)", - "text-background-color": "rgb(247,153,31)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(0,0,0)" - } - }, - { - "selector": ".account", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "8", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(accountColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(accountColour)", - "text-background-color": "data(accountColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": "node.highlight", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "overlay-color": "rgb(35,47,62)", - "overlay-opacity": "0.15", - "background-opacity": "1", - "shape": "square", - "color": "rgb(35,47,62)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.softDelete", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.5", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "opacity": "0.25" - } - }, - { - "selector": ".redDot, .amberDot", - "style": { - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,0,0)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.3", - "shape": "square", - "border-style": "solid", - "border-width": "3px", - "border-color": "rgb(255,0,0)" - } - }, - { - "selector": "edge", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "1px", - "line-style": "solid", - "line-color": "rgb(170,183,184)" - } - }, - { - "selector": "edge.highlight", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "2px", - "line-style": "dashed", - "line-color": "rgb(35,47,62)" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - } - ], - "data": {}, - "zoomingEnabled": true, - "userZoomingEnabled": true, - "zoom": 1.153779306289775, - "minZoom": 0.5, - "maxZoom": 1e+50, - "panningEnabled": true, - "userPanningEnabled": true, - "pan": { - "x": -36.08434487724253, - "y": -19.51135357878013 - }, - "boxSelectionEnabled": true, - "renderer": { - "name": "canvas" - } -} \ No newline at end of file diff --git a/source/backend/functions/drawio/test-events/complexArchitecture1.json b/source/backend/functions/drawio/test-events/complexArchitecture1.json deleted file mode 100644 index a7de2dd1..00000000 --- a/source/backend/functions/drawio/test-events/complexArchitecture1.json +++ /dev/null @@ -1,5019 +0,0 @@ -{ - "elements": { - "nodes": [ - { - "data": { - "id": "XXXXXXXXXXXX-undefined", - "level": 0, - "title": "XXXXXXXXXXXX", - "label": "XXXXXXXXXXXX - $0", - "plainLabel": "XXXXXXXXXXXX", - "type": "account", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWS-Cloud-alt_light-bg.4c3dacc7.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1068.1776640471778, - "y": 351.31145209808665 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "account removeAll" - }, - { - "data": { - "id": "us-east-1-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-east-1", - "label": "us-east-1 - $0", - "plainLabel": "us-east-1", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Region_light-bg.1ea0f82f.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1195.4276675471776, - "y": 359.5614520980867 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll" - }, - { - "data": { - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "id": "168329bc87d04c59a0dfcf57e308887b", - "title": "vpc-089b1758d1067db7a", - "label": "vpc-089b1758d1067db7a - $0", - "shape": "image", - "type": "vpc", - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#AAB7B8", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "168329bc87d04c59a0dfcf57e308887b", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-collapsed.7a624451.svg", - "cost": 0, - "private": false, - "resource": { - "id": "vpc-089b1758d1067db7a", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"deepracer-vpc\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-089b1758d1067db7a", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-089b1758d1067db7a", - "configuration": "{\"cidrBlock\":\"10.0.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-0d35fedc854ad7ed9\",\"cidrBlock\":\"10.0.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"Name\",\"value\":\"deepracer-vpc\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"VPC\"}]}", - "title": "vpc-089b1758d1067db7a", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0c03a25d038bf93e6\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-025c60fccad8c4442\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-071dfb9ffa56c7a9e\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-084b36e71469b05ec\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0904ed6dede7b558c\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-03dd856b67aab628b\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0cd26d597ed691011\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-017c15f284005248c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-03cbc2de4295a8eb3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-05a7a309166daae2d\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-065649d1429d4d9f7\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0baf67c29df7cb4b3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0e8476fca312a4e01\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-089b1758d1067db7a", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.610Z", - "tags": "{\"Name\":\"deepracer-vpc\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882610", - "isDefault": "false", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - }, - "plainLabel": "vpc-089b1758d1067db7a", - "children": true, - "aZColour": "#00A1C9", - "subnetColour": "#248814" - }, - "position": { - "x": 680.6776535471776, - "y": 296.10459899618166 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll" - }, - { - "data": { - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "id": "179970d75bc02624659954aafba52d0d", - "title": "vpc-0076ea32b02acb923", - "label": "vpc-0076ea32b02acb923 - $0", - "shape": "image", - "type": "vpc", - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#AAB7B8", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "179970d75bc02624659954aafba52d0d", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-collapsed.7a624451.svg", - "cost": 0, - "private": false, - "resource": { - "id": "vpc-0076ea32b02acb923", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"Broken Arch VPC\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-0076ea32b02acb923", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-0076ea32b02acb923", - "configuration": "{\"cidrBlock\":\"10.0.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-0091c61591e75947c\",\"cidrBlock\":\"10.0.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"},{\"key\":\"Name\",\"value\":\"Broken Arch VPC\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"VPC\"}]}", - "title": "vpc-0076ea32b02acb923", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0794a152787fa35da\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07f6c5e98e7d5ab1d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-0f3bfd55192eb6d0b\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0ad29a1de2a2f0eee\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-01fa68b1c6c7c7d15\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-098929dcbed125203\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02edb59af05e9fcca\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0568734fa63db4c40\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d2f35d04bddc8f2\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0b479d401405ed6e1\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c0a2c9c5d5adfd20\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-0076ea32b02acb923", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-01T22:11:38.615Z", - "tags": "{\"Name\":\"Broken Arch VPC\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583100698615", - "isDefault": "false", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - }, - "plainLabel": "vpc-0076ea32b02acb923", - "children": true, - "aZColour": "#00A1C9", - "subnetColour": "#248814" - }, - "position": { - "x": 1609.677678547177, - "y": 423.2922474347665 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll" - }, - { - "data": { - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "id": "871398f6d0f84b58d90c4d8dc1587903", - "title": "vpc-a339e8d9", - "label": "vpc-a339e8d9", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "871398f6d0f84b58d90c4d8dc1587903", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC.41d66c57.svg", - "cost": 0, - "private": false, - "resource": { - "id": "vpc-a339e8d9", - "type": "AWS::EC2::VPC", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a339e8d9", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-a339e8d9", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-1b47e577\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}]}", - "title": "vpc-a339e8d9", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0048b7e220199d36f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-00654cb6f20ece612\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-008849da53b376106\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-01cf31026da2f5a21\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-02a43749b30f8d2f9\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-031bb0d235021b3ef\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0686b4271c0933ab4\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06a8f99704a6f74c3\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-088270c8646c5c8eb\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-08ed4f39bf223e98e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0915ccfa7c7cb8ad5\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-09eaa5ca7f098d924\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a39107e57d64dcea\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0aacdab0229ee8b2f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0d02c0a9ce29d548e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0dd2e5e2213284363\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0e113a60da0c82566\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0ec7ab49fa1ed2b3a\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0093d277d1dae45d4\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-01ecdae39166770f9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e5da7526bb9fac9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0dd1372db8405ae34\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-32787c4a\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-579cc028\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-03f8e881bb0fcf143\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0569e5d8828fc6838\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-09bebd5044b4e6cad\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b476b05ce8270aad\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b6b7584e08296b54\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0f4be1627a7bad2f0\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-9c151cd1\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-24c94878\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-2bceb124\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-4bb87075\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-7a194d30\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-b228a89c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-d71792b0\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a339e8d9", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-04-21T16:42:57.401Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1587487377401", - "isDefault": "true", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - } - }, - "position": { - "x": 966.7103470894989, - "y": 862.7678760295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "global-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "global", - "label": "global - $0", - "plainLabel": "global", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Region_light-bg.1ea0f82f.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 57.67763654717856, - "y": 224.60515637781626 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "TAG-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "TAG", - "label": "8x TAG - $0", - "plainLabel": "TAG", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 57.67763654717855, - "y": 224.60515637781626 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "eed7cfd795ed2a6be074e6b05ee167b8", - "title": "aws:cloudformation:logical-id : VPC", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "eed7cfd795ed2a6be074e6b05ee167b8", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:logical-id", - "value": "VPC", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:logical-id", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:19.831Z", - "title": "aws:cloudformation:logical-id : VPC", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "VPC" - } - }, - "position": { - "x": 84.44272465898298, - "y": 13.105153377816245 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "2062cbef55fefda844b410fc26a2235a", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "2062cbef55fefda844b410fc26a2235a", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:stack-id", - "value": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:stack-id", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:17.873Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e" - } - }, - "position": { - "x": 26.177636047178606, - "y": 223.57847993207193 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "50b80f3646fc11c8ae880087bd9769c6", - "title": "Name : deepracer-vpc", - "label": "Name : deepr...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "50b80f3646fc11c8ae880087bd9769c6", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "Name", - "value": "deepracer-vpc", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "Name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:31.057Z", - "title": "Name : deepracer-vpc", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "deepracer-vpc" - } - }, - "position": { - "x": 84.44272465898298, - "y": 83.60515437781623 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "909aa7434f9e20fe55f7fd687cb6718e", - "title": "aws:cloudformation:stack-name : deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "909aa7434f9e20fe55f7fd687cb6718e", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:stack-name", - "value": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:stack-name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:17.920Z", - "title": "aws:cloudformation:stack-name : deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0" - } - }, - "position": { - "x": 89.1776370471785, - "y": 154.10515537781626 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "RouteTable-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "RouteTable", - "label": "3x RouteTable - $0", - "plainLabel": "RouteTable", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 535.044837225012, - "y": 395.31067139612617 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "RouteTable-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "1a9ff84674ac8b85208510868fe3d68b", - "title": "rtb-0904ed6dede7b558c", - "label": "rtb-0904ed6d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "1a9ff84674ac8b85208510868fe3d68b", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "private": false, - "resource": { - "id": "rtb-0904ed6dede7b558c", - "type": "AWS::EC2::RouteTable", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-0904ed6dede7b558c", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-03cbb9be7d0984858\",\"routeTableId\":\"rtb-0904ed6dede7b558c\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "rtb-0904ed6dede7b558c", - "configuration": "{\"associations\":[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-03cbb9be7d0984858\",\"routeTableId\":\"rtb-0904ed6dede7b558c\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-0904ed6dede7b558c\",\"routes\":[{\"destinationCidrBlock\":\"10.0.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[],\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-0904ed6dede7b558c", - "version": "1.3", - "availabilityZone": "Not Applicable", - "configurationItemCaptureTime": "2020-01-26T04:31:22.565Z", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580013082565", - "perspectiveBirthDate": "2020-04-30T13:46:52.911Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-0904ed6dede7b558c", - "resourceType": "AWS::EC2::RouteTable" - } - }, - "position": { - "x": 662.9120284028459, - "y": 407.30527024783805 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "RouteTable-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "11c5205b1d9b8767307e6fa87a503b5a", - "title": "rtb-084b36e71469b05ec", - "label": "rtb-084b36e7...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "11c5205b1d9b8767307e6fa87a503b5a", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "private": false, - "resource": { - "id": "rtb-084b36e71469b05ec", - "type": "AWS::EC2::RouteTable", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicRouteTable\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-084b36e71469b05ec", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0fad91d7b78655214\",\"routeTableId\":\"rtb-084b36e71469b05ec\",\"subnetId\":\"subnet-00508e5188a6fb0a6\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "rtb-084b36e71469b05ec", - "configuration": "{\"associations\":[{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0fad91d7b78655214\",\"routeTableId\":\"rtb-084b36e71469b05ec\",\"subnetId\":\"subnet-00508e5188a6fb0a6\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-084b36e71469b05ec\",\"routes\":[{\"destinationCidrBlock\":\"10.0.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null},{\"destinationCidrBlock\":\"0.0.0.0/0\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"igw-071dfb9ffa56c7a9e\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRoute\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicRouteTable\"}],\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-084b36e71469b05ec", - "version": "1.3", - "availabilityZone": "Not Applicable", - "configurationItemCaptureTime": "2020-01-26T04:31:22.565Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicRouteTable\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580013082565", - "perspectiveBirthDate": "2020-04-30T13:46:36.658Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-084b36e71469b05ec", - "resourceType": "AWS::EC2::RouteTable" - } - }, - "position": { - "x": 662.9120284028459, - "y": 482.62489558817356 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "RouteTable-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "940b8d0b5d6de4e351b1786d6dbad883", - "title": "rtb-078dc858fdb30c749", - "label": "rtb-078dc858...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "940b8d0b5d6de4e351b1786d6dbad883", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "private": false, - "resource": { - "id": "rtb-078dc858fdb30c749", - "type": "AWS::EC2::RouteTable", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateRouteTable\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-078dc858fdb30c749", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-03b94af40ec39b76b\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0741df8ad39fa62b3\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-065649d1429d4d9f7\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0ea4a72eed5ddc944\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-068086a3a3f883a1e\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-05a7a309166daae2d\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0b5b34cb95c98189b\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-0e8476fca312a4e01\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-006d2bdd769ca6abe\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-017c15f284005248c\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "rtb-078dc858fdb30c749", - "configuration": "{\"associations\":[{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-03b94af40ec39b76b\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0741df8ad39fa62b3\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-065649d1429d4d9f7\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0ea4a72eed5ddc944\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-068086a3a3f883a1e\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-05a7a309166daae2d\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-0b5b34cb95c98189b\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-0e8476fca312a4e01\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}},{\"main\":false,\"routeTableAssociationId\":\"rtbassoc-006d2bdd769ca6abe\",\"routeTableId\":\"rtb-078dc858fdb30c749\",\"subnetId\":\"subnet-017c15f284005248c\",\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-078dc858fdb30c749\",\"routes\":[{\"destinationCidrBlock\":\"10.0.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null},{\"destinationCidrBlock\":\"0.0.0.0/0\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":null,\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":\"nat-08eabd9fb826cd1e4\",\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRoute\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateRouteTable\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}],\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-078dc858fdb30c749", - "version": "1.3", - "availabilityZone": "Not Applicable", - "configurationItemCaptureTime": "2020-01-26T04:31:22.565Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateRouteTable\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-017c15f284005248c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-03cbc2de4295a8eb3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-05a7a309166daae2d\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-065649d1429d4d9f7\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0baf67c29df7cb4b3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0e8476fca312a4e01\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580013082565", - "perspectiveBirthDate": "2020-04-30T13:46:31.646Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-078dc858fdb30c749", - "resourceType": "AWS::EC2::RouteTable" - } - }, - "position": { - "x": 407.17764604717814, - "y": 307.9964472040787 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "SecurityGroup-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "SecurityGroup", - "label": "2x SecurityGroup - $0", - "plainLabel": "SecurityGroup", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 704.216562428565, - "y": 658.104169325778 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "SecurityGroup-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "51aa5e736e7d393fc2dd6d401dd9e0e6", - "title": "sg-0cd26d597ed691011", - "label": "sg-0cd26d597...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "51aa5e736e7d393fc2dd6d401dd9e0e6", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "private": false, - "resource": { - "id": "sg-0cd26d597ed691011", - "name": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0-SecurityGroup-4FC6WD58VPI5", - "type": "AWS::EC2::SecurityGroup", - "tags": "{\"aws:cloudformation:logical-id\":\"SecurityGroup\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-0cd26d597ed691011", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "sg-0cd26d597ed691011", - "configuration": "{\"description\":\"default VPC security group\",\"groupName\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0-SecurityGroup-4FC6WD58VPI5\",\"ipPermissions\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[{\"groupId\":\"sg-0cd26d597ed691011\",\"userId\":\"XXXXXXXXXXXX\"}],\"ipv4Ranges\":[],\"ipRanges\":[]}],\"ownerId\":\"XXXXXXXXXXXX\",\"groupId\":\"sg-0cd26d597ed691011\",\"ipPermissionsEgress\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[],\"ipv4Ranges\":[{\"cidrIp\":\"0.0.0.0/0\"}],\"ipRanges\":[\"0.0.0.0/0\"]}],\"tags\":[{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"SecurityGroup\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}],\"vpcId\":\"vpc-089b1758d1067db7a\"}", - "description": "default VPC security group", - "title": "sg-0cd26d597ed691011", - "availabilityZone": "Not Applicable", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:52.919Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-0cd26d597ed691011", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "resourceName": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0-SecurityGroup-4FC6WD58VPI5", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T02:55:43.123Z", - "tags": "{\"aws:cloudformation:logical-id\":\"SecurityGroup\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549940143123", - "groupName": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0-SecurityGroup-4FC6WD58VPI5", - "resourceType": "AWS::EC2::SecurityGroup" - } - }, - "position": { - "x": 704.216562428565, - "y": 622.854168825778 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "SecurityGroup-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "65fc9452a8f8831e59362777183641a7", - "title": "sg-03dd856b67aab628b", - "label": "sg-03dd856b6...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "65fc9452a8f8831e59362777183641a7", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "private": false, - "resource": { - "id": "sg-03dd856b67aab628b", - "name": "default", - "type": "AWS::EC2::SecurityGroup", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-03dd856b67aab628b", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "sg-03dd856b67aab628b", - "configuration": "{\"description\":\"default VPC security group\",\"groupName\":\"default\",\"ipPermissions\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[{\"groupId\":\"sg-03dd856b67aab628b\",\"userId\":\"XXXXXXXXXXXX\"}],\"ipv4Ranges\":[],\"ipRanges\":[]}],\"ownerId\":\"XXXXXXXXXXXX\",\"groupId\":\"sg-03dd856b67aab628b\",\"ipPermissionsEgress\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[],\"ipv4Ranges\":[{\"cidrIp\":\"0.0.0.0/0\"}],\"ipRanges\":[\"0.0.0.0/0\"]}],\"tags\":[],\"vpcId\":\"vpc-089b1758d1067db7a\"}", - "description": "default VPC security group", - "title": "sg-03dd856b67aab628b", - "availabilityZone": "Not Applicable", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:46.742Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-03dd856b67aab628b", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "resourceName": "default", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:24.107Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945884107", - "groupName": "default", - "resourceType": "AWS::EC2::SecurityGroup" - } - }, - "position": { - "x": 704.216562428565, - "y": 693.3541698257781 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "Multiple Availability Zones", - "label": "Multiple Availability Zones - $0", - "plainLabel": "Multiple Availability Zones", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 498.67764854717757, - "y": 46.175736185332 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkAcl-Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "parent": "Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "title": "NetworkAcl", - "label": "2x NetworkAcl - $0", - "plainLabel": "NetworkAcl", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 437.17764704717774, - "y": 46.175736185332 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "level": 5, - "id": "0a0500dfcfe304d31fc87b1b5484bcf4", - "title": "acl-0c03a25d038bf93e6", - "label": "acl-0c03a25d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0a0500dfcfe304d31fc87b1b5484bcf4", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "private": false, - "resource": { - "id": "acl-0c03a25d038bf93e6", - "type": "AWS::EC2::NetworkAcl", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0c03a25d038bf93e6", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[]", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "acl-0c03a25d038bf93e6", - "configuration": "{\"associations\":[],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-0c03a25d038bf93e6\",\"tags\":[],\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "title": "acl-0c03a25d038bf93e6", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:49.211Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0c03a25d038bf93e6", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:23.821Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945883821", - "isDefault": "true", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 437.17764704717774, - "y": -55.1449708334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "level": 5, - "id": "1baa0c85eaf216ecba761aed99ba2a1c", - "title": "acl-0d850673eac288a58", - "label": "acl-0d850673...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "1baa0c85eaf216ecba761aed99ba2a1c", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "private": false, - "resource": { - "id": "acl-0d850673eac288a58", - "type": "AWS::EC2::NetworkAcl", - "tags": "{\"aws:cloudformation:logical-id\":\"NetworkAcl\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0d850673eac288a58", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-007030b3b31300e14\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-0e8476fca312a4e01\"},{\"networkAclAssociationId\":\"aclassoc-02c37e3b40fc51dba\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-00508e5188a6fb0a6\"},{\"networkAclAssociationId\":\"aclassoc-0ee3122ba0f8dc3e0\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-065649d1429d4d9f7\"},{\"networkAclAssociationId\":\"aclassoc-036d65e6a09ecf117\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\"},{\"networkAclAssociationId\":\"aclassoc-07dae03d7ae6e66ca\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-05a7a309166daae2d\"},{\"networkAclAssociationId\":\"aclassoc-06ee292c897d8d76f\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-017c15f284005248c\"},{\"networkAclAssociationId\":\"aclassoc-0003f64c7ba32bb13\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\"}]", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "acl-0d850673eac288a58", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-007030b3b31300e14\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-0e8476fca312a4e01\"},{\"networkAclAssociationId\":\"aclassoc-02c37e3b40fc51dba\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-00508e5188a6fb0a6\"},{\"networkAclAssociationId\":\"aclassoc-0ee3122ba0f8dc3e0\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-065649d1429d4d9f7\"},{\"networkAclAssociationId\":\"aclassoc-036d65e6a09ecf117\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\"},{\"networkAclAssociationId\":\"aclassoc-07dae03d7ae6e66ca\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-05a7a309166daae2d\"},{\"networkAclAssociationId\":\"aclassoc-06ee292c897d8d76f\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-017c15f284005248c\"},{\"networkAclAssociationId\":\"aclassoc-0003f64c7ba32bb13\",\"networkAclId\":\"acl-0d850673eac288a58\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":false,\"networkAclId\":\"acl-0d850673eac288a58\",\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"NetworkAcl\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"}],\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "title": "acl-0d850673eac288a58", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-017c15f284005248c\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-03cbc2de4295a8eb3\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-05a7a309166daae2d\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-065649d1429d4d9f7\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0baf67c29df7cb4b3\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0e8476fca312a4e01\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:30.736Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0d850673eac288a58", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:03.059Z", - "tags": "{\"aws:cloudformation:logical-id\":\"NetworkAcl\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935843059", - "isDefault": "false", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 437.17764704717774, - "y": 147.4964432040787 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "InternetGateway-Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "parent": "Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "title": "InternetGateway", - "label": "1x InternetGateway - $0", - "plainLabel": "InternetGateway", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Internet-Gateway_light-bg.79da6fce.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 560.1776500471774, - "y": -55.1449708334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "InternetGateway-Multiple Availability Zones-168329bc87d04c59a0dfcf57e308887b", - "level": 5, - "id": "23458cd7649d49a42d3d7e4b9f86f24a", - "title": "igw-071dfb9ffa56c7a9e", - "label": "igw-071dfb9f...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "23458cd7649d49a42d3d7e4b9f86f24a", - "image": "/static/media/Amazon-VPC_Internet-Gateway_light-bg.79da6fce.svg", - "cost": 0, - "private": false, - "resource": { - "id": "igw-071dfb9ffa56c7a9e", - "type": "AWS::EC2::InternetGateway", - "tags": "{\"aws:cloudformation:logical-id\":\"InternetGateway\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-071dfb9ffa56c7a9e", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "igw-071dfb9ffa56c7a9e", - "configuration": "{\"attachments\":[{\"state\":\"available\",\"vpcId\":\"vpc-089b1758d1067db7a\"}],\"internetGatewayId\":\"igw-071dfb9ffa56c7a9e\",\"ownerId\":\"XXXXXXXXXXXX\",\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"InternetGateway\"}]}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "igw-071dfb9ffa56c7a9e", - "version": "1.3", - "availabilityZone": "Multiple Availability Zones", - "configurationItemCaptureTime": "2019-02-12T01:44:03.591Z", - "tags": "{\"aws:cloudformation:logical-id\":\"InternetGateway\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is attached to Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935843591", - "perspectiveBirthDate": "2020-04-30T13:46:51.474Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-071dfb9ffa56c7a9e", - "resourceType": "AWS::EC2::InternetGateway" - } - }, - "position": { - "x": 560.1776500471774, - "y": -55.1449708334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "plainLabel": "us-east-1a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 903.3479606924352, - "y": 321.977756768613 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "966b9ba76194634b368009d59dccbb73", - "parent": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "title": "subnet-00508e5188a6fb0a6", - "label": "subnet-00508e5188a6fb0a6 - $0", - "plainLabel": "subnet-00508e5188a6fb0a6", - "type": "subnet", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-subnet-private_light-bg-collapsed.fb392d44.svg", - "clickedId": "966b9ba76194634b368009d59dccbb73", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "subnetId": "subnet-00508e5188a6fb0a6", - "configurationItemStatus": "OK", - "resourceId": "subnet-00508e5188a6fb0a6", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.0.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-00508e5188a6fb0a6\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6\",\"outpostArn\":null}", - "title": "subnet-00508e5188a6fb0a6", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-025c60fccad8c4442\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-084b36e71469b05ec\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.357Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicSubnet\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882357", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - }, - "resource": { - "id": "subnet-00508e5188a6fb0a6", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicSubnet\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 896.1776590471769, - "y": 555.6004823706407 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "subnet removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkInterface-966b9ba76194634b368009d59dccbb73", - "parent": "966b9ba76194634b368009d59dccbb73", - "level": 5, - "title": "NetworkInterface", - "label": "1x NetworkInterface - $0", - "plainLabel": "NetworkInterface", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 896.1776590471769, - "y": 555.6004823706407 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkInterface-966b9ba76194634b368009d59dccbb73", - "level": 6, - "id": "4810ea3e92ec39f69e499eeef3901f80", - "title": "eni-025c60fccad8c4442", - "label": "eni-025c60fc...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "4810ea3e92ec39f69e499eeef3901f80", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "private": false, - "resource": { - "id": "eni-025c60fccad8c4442", - "type": "AWS::EC2::NetworkInterface", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-025c60fccad8c4442", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-00508e5188a6fb0a6", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "eni-025c60fccad8c4442", - "configuration": "{\"association\":{\"allocationId\":\"eipalloc-0a0d91c0bc6cbc326\",\"associationId\":\"eipassoc-03a37a003d80dc676\",\"ipOwnerId\":\"XXXXXXXXXXXX\",\"publicDnsName\":\"ec2-18-233-190-203.compute-1.amazonaws.com\",\"publicIp\":\"18.233.190.203\"},\"attachment\":{\"attachTime\":null,\"attachmentId\":\"ela-attach-050fc324\",\"deleteOnTermination\":false,\"deviceIndex\":1,\"instanceId\":null,\"instanceOwnerId\":\"amazon-aws\",\"status\":\"attached\"},\"availabilityZone\":\"us-east-1a\",\"description\":\"Interface for NAT Gateway nat-08eabd9fb826cd1e4\",\"groups\":[],\"interfaceType\":\"nat_gateway\",\"ipv6Addresses\":[],\"macAddress\":\"02:ef:9a:3c:2d:2e\",\"networkInterfaceId\":\"eni-025c60fccad8c4442\",\"outpostArn\":null,\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":\"ip-10-0-0-44.ec2.internal\",\"privateIpAddress\":\"10.0.0.44\",\"privateIpAddresses\":[{\"association\":{\"allocationId\":\"eipalloc-0a0d91c0bc6cbc326\",\"associationId\":\"eipassoc-03a37a003d80dc676\",\"ipOwnerId\":\"XXXXXXXXXXXX\",\"publicDnsName\":\"ec2-18-233-190-203.compute-1.amazonaws.com\",\"publicIp\":\"18.233.190.203\"},\"primary\":true,\"privateDnsName\":\"ip-10-0-0-44.ec2.internal\",\"privateIpAddress\":\"10.0.0.44\"}],\"requesterId\":\"733026130740\",\"requesterManaged\":true,\"sourceDestCheck\":false,\"status\":\"in-use\",\"subnetId\":\"subnet-00508e5188a6fb0a6\",\"tagSet\":[],\"vpcId\":\"vpc-089b1758d1067db7a\"}", - "description": "Interface for NAT Gateway nat-08eabd9fb826cd1e4", - "title": "eni-025c60fccad8c4442", - "sourceDestCheck": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "relationships": "[{\"resourceType\":\"AWS::EC2::EIP\",\"resourceId\":\"eipalloc-0a0d91c0bc6cbc326\",\"relationshipName\":\"Is attached to ElasticIp\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Is contained in Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "interfaceType": "nat_gateway", - "perspectiveBirthDate": "2020-04-30T13:46:30.187Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-025c60fccad8c4442", - "networkInterfaceId": "eni-025c60fccad8c4442", - "awsRegion": "us-east-1", - "requesterId": "733026130740", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "requesterManaged": "true", - "configurationItemCaptureTime": "2019-02-12T01:49:16.698Z", - "privateIpAddress": "10.0.0.44", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549936156698", - "macAddress": "02:ef:9a:3c:2d:2e", - "privateDnsName": "ip-10-0-0-44.ec2.internal", - "status": "in-use", - "resourceType": "AWS::EC2::NetworkInterface" - } - }, - "position": { - "x": 896.1776590471769, - "y": 555.6004823706407 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "345041abed895b869d9f5e75f22f93dc", - "title": "subnet-03cbc2de4295a8eb3", - "label": "subnet-03cbc...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "345041abed895b869d9f5e75f22f93dc", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-03cbc2de4295a8eb3", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-03cbc2de4295a8eb3", - "configurationItemStatus": "OK", - "resourceId": "subnet-03cbc2de4295a8eb3", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet1\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3\",\"outpostArn\":null}", - "title": "subnet-03cbc2de4295a8eb3", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 953.5182623376935, - "y": 45.35503116658529 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1c-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1c", - "label": "us-east-1c - $0", - "plainLabel": "us-east-1c", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 283.17764304717826, - "y": 221.79797642031068 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1c-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "69b6cf7c45797d6b9a3de1a72095aad3", - "title": "subnet-05a7a309166daae2d", - "label": "subnet-05a7a...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "69b6cf7c45797d6b9a3de1a72095aad3", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-05a7a309166daae2d", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet3\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-05a7a309166daae2d", - "configurationItemStatus": "OK", - "resourceId": "subnet-05a7a309166daae2d", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.3.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-05a7a309166daae2d\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet3\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d\",\"outpostArn\":null}", - "title": "subnet-05a7a309166daae2d", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.3.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet3\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 283.17764304717826, - "y": 221.79797642031068 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover clicked" - }, - { - "data": { - "id": "us-east-1f-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1f", - "label": "us-east-1f - $0", - "plainLabel": "us-east-1f", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 713.1776540471769, - "y": -85.1449718334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1f-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "c10e023e5e9962486a27937464b17ef6", - "title": "subnet-0baf67c29df7cb4b3", - "label": "subnet-0baf6...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "c10e023e5e9962486a27937464b17ef6", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-0baf67c29df7cb4b3", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet6\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0baf67c29df7cb4b3", - "configurationItemStatus": "OK", - "resourceId": "subnet-0baf67c29df7cb4b3", - "configuration": "{\"availabilityZone\":\"us-east-1f\",\"availabilityZoneId\":\"use1-az5\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.6.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet6\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3\",\"outpostArn\":null}", - "title": "subnet-0baf67c29df7cb4b3", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1f", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.6.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T02:55:43.147Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet6\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549940143147", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 713.1776540471769, - "y": -85.1449718334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1b-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "plainLabel": "us-east-1b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 713.177654047177, - "y": 177.49644420407876 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "0255dfb05a166f3aa17ef7aeeb5ac814", - "title": "subnet-065649d1429d4d9f7", - "label": "subnet-06564...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0255dfb05a166f3aa17ef7aeeb5ac814", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-065649d1429d4d9f7", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-065649d1429d4d9f7", - "configurationItemStatus": "OK", - "resourceId": "subnet-065649d1429d4d9f7", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.2.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-065649d1429d4d9f7\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet2\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7\",\"outpostArn\":null}", - "title": "subnet-065649d1429d4d9f7", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.2.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 713.177654047177, - "y": 177.49644420407876 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1e-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1e", - "label": "us-east-1e - $0", - "plainLabel": "us-east-1e", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1035.6945096752431, - "y": -85.1449718334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1e-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "0f618ce877be074b636a6d21db2ce280", - "title": "subnet-0e8476fca312a4e01", - "label": "subnet-0e847...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0f618ce877be074b636a6d21db2ce280", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-0e8476fca312a4e01", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet5\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0e8476fca312a4e01", - "configurationItemStatus": "OK", - "resourceId": "subnet-0e8476fca312a4e01", - "configuration": "{\"availabilityZone\":\"us-east-1e\",\"availabilityZoneId\":\"use1-az3\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.5.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0e8476fca312a4e01\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet5\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01\",\"outpostArn\":null}", - "title": "subnet-0e8476fca312a4e01", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1e", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.5.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet5\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 1035.6945096752431, - "y": -85.1449718334147 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1d-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1d", - "label": "us-east-1d - $0", - "plainLabel": "us-east-1d", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1079.177664047177, - "y": 45.37349133340007 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1d-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "2a6bd26eff758a6617e224ed2ed884fe", - "title": "subnet-017c15f284005248c", - "label": "subnet-017c1...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "2a6bd26eff758a6617e224ed2ed884fe", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-017c15f284005248c", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet4\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-017c15f284005248c", - "configurationItemStatus": "OK", - "resourceId": "subnet-017c15f284005248c", - "configuration": "{\"availabilityZone\":\"us-east-1d\",\"availabilityZoneId\":\"use1-az6\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.4.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-017c15f284005248c\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet4\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c\",\"outpostArn\":null}", - "title": "subnet-017c15f284005248c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1d", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.4.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.357Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet4\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882357", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 1079.177664047177, - "y": 45.37349133340007 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "Stack", - "label": "2x Stack - $0", - "plainLabel": "Stack", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWS-CloudFormation.2a622cf7.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 2120.177692047177, - "y": 56.55533985282777 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "5a69b0854dea77a8fb6f1024c34881b9", - "title": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "label": "deepracer-vp...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "5a69b0854dea77a8fb6f1024c34881b9", - "image": "/static/media/AWS-CloudFormation.2a622cf7.svg", - "cost": 0, - "private": false, - "resource": { - "id": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "name": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "type": "AWS::CloudFormation::Stack", - "tags": "{}", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "region": "us-east-1", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"stackName\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\",\"creationTime\":\"Feb 12, 2019 1:41:33 AM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"outputs\":[],\"roleARN\":\"arn:aws:iam::XXXXXXXXXXXX:role/AWSDeepRacerCloudFormationAccessRole\",\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"EC2SNAA1OO50\\\",\\\"physicalResourceId\\\":\\\"aclassoc-0ee3122ba0f8dc3e0\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAA1X79W\\\",\\\"physicalResourceId\\\":\\\"aclassoc-02c37e3b40fc51dba\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAA2R0VV\\\",\\\"physicalResourceId\\\":\\\"aclassoc-02c37e3b40fc51dba\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAA3JTYK\\\",\\\"physicalResourceId\\\":\\\"aclassoc-007030b3b31300e14\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAA40P1E\\\",\\\"physicalResourceId\\\":\\\"aclassoc-0003f64c7ba32bb13\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAA45YPN\\\",\\\"physicalResourceId\\\":\\\"aclassoc-06ee292c897d8d76f\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAAA33U\\\",\\\"physicalResourceId\\\":\\\"aclassoc-036d65e6a09ecf117\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SNAAFXC8\\\",\\\"physicalResourceId\\\":\\\"aclassoc-07dae03d7ae6e66ca\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA1T6C0\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-03b94af40ec39b76b\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA1U0OZ\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-006d2bdd769ca6abe\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA2CZ16\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0b5b34cb95c98189b\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:38 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA3UBWK\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0741df8ad39fa62b3\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA4CTQ\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0fad91d7b78655214\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA4RLBK\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-068086a3a3f883a1e\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2SRTA5AW7U\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0ea4a72eed5ddc944\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:33 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2VPCG1I22U\\\",\\\"physicalResourceId\\\":\\\"deepr-EC2VP-AMHXKSKET7SV\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:21 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"EC2VPCG3B58J\\\",\\\"physicalResourceId\\\":\\\"deepr-EC2VP-1CWT00STM0EBC\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:22 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ElasticIP\\\",\\\"physicalResourceId\\\":\\\"18.233.190.203\\\",\\\"resourceType\\\":\\\"AWS::EC2::EIP\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:41:52 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"InternetGateway\\\",\\\"physicalResourceId\\\":\\\"igw-071dfb9ffa56c7a9e\\\",\\\"resourceType\\\":\\\"AWS::EC2::InternetGateway\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:02 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"NatGateway\\\",\\\"physicalResourceId\\\":\\\"nat-08eabd9fb826cd1e4\\\",\\\"resourceType\\\":\\\"AWS::EC2::NatGateway\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:44:21 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"NetworkAcl\\\",\\\"physicalResourceId\\\":\\\"acl-0d850673eac288a58\\\",\\\"resourceType\\\":\\\"AWS::EC2::NetworkAcl\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:41:58 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"NetworkAclEntryEgress\\\",\\\"physicalResourceId\\\":\\\"deepr-Netwo-1R1B0II0EHMON\\\",\\\"resourceType\\\":\\\"AWS::EC2::NetworkAclEntry\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:18 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"NetworkAclEntryIngress\\\",\\\"physicalResourceId\\\":\\\"deepr-Netwo-146B49BGNEJ80\\\",\\\"resourceType\\\":\\\"AWS::EC2::NetworkAclEntry\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:18 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateRoute\\\",\\\"physicalResourceId\\\":\\\"deepr-Priva-5QF0WNCF8K81\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:44:40 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateRouteTable\\\",\\\"physicalResourceId\\\":\\\"rtb-078dc858fdb30c749\\\",\\\"resourceType\\\":\\\"AWS::EC2::RouteTable\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:41:59 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet1\\\",\\\"physicalResourceId\\\":\\\"subnet-03cbc2de4295a8eb3\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet2\\\",\\\"physicalResourceId\\\":\\\"subnet-065649d1429d4d9f7\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet3\\\",\\\"physicalResourceId\\\":\\\"subnet-05a7a309166daae2d\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet4\\\",\\\"physicalResourceId\\\":\\\"subnet-017c15f284005248c\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet5\\\",\\\"physicalResourceId\\\":\\\"subnet-0e8476fca312a4e01\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PrivateSubnet6\\\",\\\"physicalResourceId\\\":\\\"subnet-0baf67c29df7cb4b3\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicRoute\\\",\\\"physicalResourceId\\\":\\\"deepr-Publi-130LF7XSQRKOK\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:41 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicRouteTable\\\",\\\"physicalResourceId\\\":\\\"rtb-084b36e71469b05ec\\\",\\\"resourceType\\\":\\\"AWS::EC2::RouteTable\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:41:59 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicSubnet\\\",\\\"physicalResourceId\\\":\\\"subnet-00508e5188a6fb0a6\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:14 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"SecurityGroup\\\",\\\"physicalResourceId\\\":\\\"sg-0cd26d597ed691011\\\",\\\"resourceType\\\":\\\"AWS::EC2::SecurityGroup\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:06 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"SecurityGroupIngress\\\",\\\"physicalResourceId\\\":\\\"SecurityGroupIngress\\\",\\\"resourceType\\\":\\\"AWS::EC2::SecurityGroupIngress\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:42:11 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"VPC\\\",\\\"physicalResourceId\\\":\\\"vpc-089b1758d1067db7a\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPC\\\",\\\"lastUpdatedTimestamp\\\":\\\"Feb 12, 2019 1:41:55 AM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"SecurityGroupIngress\\\",\\\"resourceType\\\":\\\"AWS::EC2::SecurityGroupIngress\\\"},{\\\"resourceId\\\":\\\"aclassoc-0003f64c7ba32bb13\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-007030b3b31300e14\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-02c37e3b40fc51dba\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-036d65e6a09ecf117\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-06ee292c897d8d76f\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-07dae03d7ae6e66ca\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"aclassoc-0ee3122ba0f8dc3e0\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetNetworkAclAssociation\\\"},{\\\"resourceId\\\":\\\"deepr-EC2VP-1CWT00STM0EBC\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\"},{\\\"resourceId\\\":\\\"deepr-EC2VP-AMHXKSKET7SV\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\"},{\\\"resourceId\\\":\\\"deepr-Netwo-146B49BGNEJ80\\\",\\\"resourceType\\\":\\\"AWS::EC2::NetworkAclEntry\\\"},{\\\"resourceId\\\":\\\"deepr-Netwo-1R1B0II0EHMON\\\",\\\"resourceType\\\":\\\"AWS::EC2::NetworkAclEntry\\\"},{\\\"resourceId\\\":\\\"deepr-Priva-5QF0WNCF8K81\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\"},{\\\"resourceId\\\":\\\"deepr-Publi-130LF7XSQRKOK\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\"},{\\\"resourceId\\\":\\\"rtbassoc-006d2bdd769ca6abe\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-03b94af40ec39b76b\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-068086a3a3f883a1e\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-0741df8ad39fa62b3\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-0b5b34cb95c98189b\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-0ea4a72eed5ddc944\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-0fad91d7b78655214\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"}]\"}", - "configurationItemMD5Hash": "", - "resourceName": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "title": "deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-05T15:31:22.805Z", - "tags": "{}", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-071dfb9ffa56c7a9e\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::NatGateway\",\"resourceId\":\"nat-08eabd9fb826cd1e4\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::EIP\",\"resourceName\":\"18.233.190.203\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-084b36e71469b05ec\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0cd26d597ed691011\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-017c15f284005248c\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-03cbc2de4295a8eb3\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-05a7a309166daae2d\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-065649d1429d4d9f7\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0baf67c29df7cb4b3\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0e8476fca312a4e01\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Contains \"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580916682805", - "perspectiveBirthDate": "2020-04-30T13:47:05.048Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "resourceCreationTime": "2019-02-12T01:41:33.643Z", - "resourceType": "AWS::CloudFormation::Stack" - } - }, - "position": { - "x": 2120.177692047177, - "y": 218.2556525390702 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "35c575cd5decfde059d197d26a9090c0", - "title": "Name : Broken Arch VPC", - "label": "Name : Broke...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "35c575cd5decfde059d197d26a9090c0", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "Name", - "value": "Broken Arch VPC", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "Name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:19.616Z", - "title": "Name : Broken Arch VPC", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "Broken Arch VPC" - } - }, - "position": { - "x": 89.1776370471785, - "y": 224.60515637781623 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "da90e1433acef6889fcc14758e198d4f", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "da90e1433acef6889fcc14758e198d4f", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:stack-id", - "value": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:stack-id", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:21.038Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72" - } - }, - "position": { - "x": 82.35020884935739, - "y": 365.6051583778162 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "9dfd73f21cd985edf07317eab2c1586c", - "title": "aws:cloudformation:stack-name : scrubPuppyTest", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "9dfd73f21cd985edf07317eab2c1586c", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:stack-name", - "value": "scrubPuppyTest", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:stack-name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:19.765Z", - "title": "aws:cloudformation:stack-name : scrubPuppyTest", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "scrubPuppyTest" - } - }, - "position": { - "x": 82.35020884935739, - "y": 436.1051593778163 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "Multiple Availability Zones", - "label": "Multiple Availability Zones - $0", - "plainLabel": "Multiple Availability Zones", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1333.6776715471772, - "y": 587.0178685295882 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "InternetGateway-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "parent": "Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 4, - "title": "InternetGateway", - "label": "1x InternetGateway - $0", - "plainLabel": "InternetGateway", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Internet-Gateway_light-bg.79da6fce.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1395.1776730471772, - "y": 652.2678700295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "InternetGateway-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 5, - "id": "4a95e5a7ff3a5954270e05794b5718c1", - "title": "igw-0f3bfd55192eb6d0b", - "label": "igw-0f3bfd55...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "4a95e5a7ff3a5954270e05794b5718c1", - "image": "/static/media/Amazon-VPC_Internet-Gateway_light-bg.79da6fce.svg", - "cost": 0, - "private": false, - "resource": { - "id": "igw-0f3bfd55192eb6d0b", - "type": "AWS::EC2::InternetGateway", - "tags": "{\"Name\":\"Broken Arch Internet Gateway\",\"aws:cloudformation:logical-id\":\"InternetGateway\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-0f3bfd55192eb6d0b", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "igw-0f3bfd55192eb6d0b", - "configuration": "{\"attachments\":[{\"state\":\"available\",\"vpcId\":\"vpc-0076ea32b02acb923\"}],\"internetGatewayId\":\"igw-0f3bfd55192eb6d0b\",\"ownerId\":\"XXXXXXXXXXXX\",\"tags\":[{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"InternetGateway\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"Name\",\"value\":\"Broken Arch Internet Gateway\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"}]}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "igw-0f3bfd55192eb6d0b", - "version": "1.3", - "availabilityZone": "Multiple Availability Zones", - "configurationItemCaptureTime": "2019-01-22T17:04:31.648Z", - "tags": "{\"Name\":\"Broken Arch Internet Gateway\",\"aws:cloudformation:logical-id\":\"InternetGateway\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#igws:sort=internetGatewayId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is attached to Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1548176671648", - "perspectiveBirthDate": "2020-04-30T13:46:35.849Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#igws:sort=internetGatewayId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:internet-gateway/igw-0f3bfd55192eb6d0b", - "resourceType": "AWS::EC2::InternetGateway" - } - }, - "position": { - "x": 1395.1776730471772, - "y": 652.2678700295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "NetworkAcl-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "parent": "Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 4, - "title": "NetworkAcl", - "label": "1x NetworkAcl - $0", - "plainLabel": "NetworkAcl", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1272.1776700471771, - "y": 652.2678700295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 5, - "id": "0374431adb26a35d96b31df60ec660b8", - "title": "acl-0db1f5058fee61b45", - "label": "acl-0db1f505...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0374431adb26a35d96b31df60ec660b8", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "private": false, - "resource": { - "id": "acl-0db1f5058fee61b45", - "type": "AWS::EC2::NetworkAcl", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0db1f5058fee61b45", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-07f3563dd11ed6b9e\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0568734fa63db4c40\"},{\"networkAclAssociationId\":\"aclassoc-0c5d308656d798142\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-02edb59af05e9fcca\"},{\"networkAclAssociationId\":\"aclassoc-007d156e2f6de42ff\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0b479d401405ed6e1\"},{\"networkAclAssociationId\":\"aclassoc-0475fb811b16f1a57\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\"},{\"networkAclAssociationId\":\"aclassoc-0d55ca948d24afdbc\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\"},{\"networkAclAssociationId\":\"aclassoc-0b7bdc377fc928ea9\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\"}]", - "configurationItemStatus": "OK", - "resourceId": "acl-0db1f5058fee61b45", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-07f3563dd11ed6b9e\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0568734fa63db4c40\"},{\"networkAclAssociationId\":\"aclassoc-0c5d308656d798142\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-02edb59af05e9fcca\"},{\"networkAclAssociationId\":\"aclassoc-007d156e2f6de42ff\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0b479d401405ed6e1\"},{\"networkAclAssociationId\":\"aclassoc-0475fb811b16f1a57\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\"},{\"networkAclAssociationId\":\"aclassoc-0d55ca948d24afdbc\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\"},{\"networkAclAssociationId\":\"aclassoc-0b7bdc377fc928ea9\",\"networkAclId\":\"acl-0db1f5058fee61b45\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-0db1f5058fee61b45\",\"tags\":[],\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "title": "acl-0db1f5058fee61b45", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#acls:sort=networkAclId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02edb59af05e9fcca\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0568734fa63db4c40\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d2f35d04bddc8f2\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0b479d401405ed6e1\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c0a2c9c5d5adfd20\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:19.695Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#acls:sort=networkAclId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-acl/acl-0db1f5058fee61b45", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "configurationItemCaptureTime": "2019-01-23T01:25:50.846Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1548206750846", - "isDefault": "true", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 1272.1776700471771, - "y": 652.2678700295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "LoadBalancer-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "parent": "Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 4, - "title": "LoadBalancer", - "label": "1x LoadBalancer - $0", - "plainLabel": "LoadBalancer", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Elastic-Load-Balancing-ELB_Application-load-balancer_light-bg-menu.410285b5.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1272.1776700471771, - "y": 521.7678670295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "LoadBalancer-Multiple Availability Zones-179970d75bc02624659954aafba52d0d", - "level": 5, - "id": "c1cd1acf43d99f037439401f6ea5f068", - "title": "scrubPuppyTest-ELB-QRAS7BC2U9NH", - "label": "scrubPuppyTe...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#1D8102", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "c1cd1acf43d99f037439401f6ea5f068", - "state": { - "status": "status-available", - "text": "active", - "color": "#1D8102" - }, - "image": "/static/media/Elastic-Load-Balancing-ELB_Application-load-balancer_light-bg.44bde31f.svg", - "cost": 0, - "private": false, - "detailsComponent": { - "key": null, - "ref": null, - "props": { - "title": "Load Balancer Details", - "configuration": "{\"loadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c\",\"dNSName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH-777664761.us-east-1.elb.amazonaws.com\",\"canonicalHostedZoneId\":\"Z35SXDOTRQ7X7K\",\"createdTime\":\"2019-01-22T17:15:38.910Z\",\"loadBalancerName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH\",\"scheme\":\"internet-facing\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"state\":{\"code\":\"active\",\"reason\":null},\"type\":\"application\",\"availabilityZones\":[{\"zoneName\":\"us-east-1a\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\",\"loadBalancerAddresses\":[]},{\"zoneName\":\"us-east-1b\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"loadBalancerAddresses\":[]}],\"securityGroups\":[\"sg-098929dcbed125203\"],\"ipAddressType\":\"ipv4\"}" - }, - "_owner": null - }, - "hoverComponent": { - "key": null, - "ref": null, - "props": { - "configuration": "{\"loadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c\",\"dNSName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH-777664761.us-east-1.elb.amazonaws.com\",\"canonicalHostedZoneId\":\"Z35SXDOTRQ7X7K\",\"createdTime\":\"2019-01-22T17:15:38.910Z\",\"loadBalancerName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH\",\"scheme\":\"internet-facing\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"state\":{\"code\":\"active\",\"reason\":null},\"type\":\"application\",\"availabilityZones\":[{\"zoneName\":\"us-east-1a\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\",\"loadBalancerAddresses\":[]},{\"zoneName\":\"us-east-1b\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"loadBalancerAddresses\":[]}],\"securityGroups\":[\"sg-098929dcbed125203\"],\"ipAddressType\":\"ipv4\"}" - }, - "_owner": null - }, - "resource": { - "id": "arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c", - "name": "scrubPuppyTest-ELB-QRAS7BC2U9NH", - "type": "AWS::ElasticLoadBalancingV2::LoadBalancer", - "tags": "{}", - "arn": "arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c", - "region": "us-east-1", - "state": "{\"code\":\"active\",\"reason\":null}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#LoadBalancers:", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#LoadBalancers:", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c", - "configuration": "{\"loadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c\",\"dNSName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH-777664761.us-east-1.elb.amazonaws.com\",\"canonicalHostedZoneId\":\"Z35SXDOTRQ7X7K\",\"createdTime\":\"2019-01-22T17:15:38.910Z\",\"loadBalancerName\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH\",\"scheme\":\"internet-facing\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"state\":{\"code\":\"active\",\"reason\":null},\"type\":\"application\",\"availabilityZones\":[{\"zoneName\":\"us-east-1a\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\",\"loadBalancerAddresses\":[]},{\"zoneName\":\"us-east-1b\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"loadBalancerAddresses\":[]}],\"securityGroups\":[\"sg-098929dcbed125203\"],\"ipAddressType\":\"ipv4\"}", - "title": "scrubPuppyTest-ELB-QRAS7BC2U9NH", - "type": "application", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#LoadBalancers:", - "relationships": "[{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-098929dcbed125203\",\"relationshipName\":\"Is associated with SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d2f35d04bddc8f2\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:27.841Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#LoadBalancers:", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "{\"code\":\"active\",\"reason\":null}", - "arn": "arn:aws:elasticloadbalancing:us-east-1:XXXXXXXXXXXX:loadbalancer/app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c", - "resourceCreationTime": "2019-01-22T17:15:38.910Z", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{\"LoadBalancerAttributes\":\"[{\\\"key\\\":\\\"access_logs.s3.enabled\\\",\\\"value\\\":\\\"false\\\"},{\\\"key\\\":\\\"access_logs.s3.bucket\\\",\\\"value\\\":\\\"\\\"},{\\\"key\\\":\\\"access_logs.s3.prefix\\\",\\\"value\\\":\\\"\\\"},{\\\"key\\\":\\\"idle_timeout.timeout_seconds\\\",\\\"value\\\":\\\"60\\\"},{\\\"key\\\":\\\"deletion_protection.enabled\\\",\\\"value\\\":\\\"false\\\"},{\\\"key\\\":\\\"routing.http2.enabled\\\",\\\"value\\\":\\\"true\\\"},{\\\"key\\\":\\\"routing.http.drop_invalid_header_fields.enabled\\\",\\\"value\\\":\\\"false\\\"},{\\\"key\\\":\\\"waf.enabled\\\",\\\"value\\\":\\\"false\\\"},{\\\"key\\\":\\\"waf.web_acl_id\\\",\\\"value\\\":\\\"\\\"}]\",\"Tags\":\"[]\"}", - "configurationItemMD5Hash": "", - "resourceName": "scrubPuppyTest-ELB-QRAS7BC2U9NH", - "version": "1.3", - "configurationItemCaptureTime": "2019-11-20T04:31:22.405Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1574224282405", - "resourceType": "AWS::ElasticLoadBalancingV2::LoadBalancer" - } - }, - "position": { - "x": 1272.1776700471771, - "y": 521.7678670295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "SecurityGroup-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "SecurityGroup", - "label": "2x SecurityGroup - $0", - "plainLabel": "SecurityGroup", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1854.177685047177, - "y": 465.3116790174555 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "SecurityGroup-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "0f8de025e98a074027a24404071e99af", - "title": "sg-01fa68b1c6c7c7d15", - "label": "sg-01fa68b1c...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0f8de025e98a074027a24404071e99af", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "private": false, - "resource": { - "id": "sg-01fa68b1c6c7c7d15", - "name": "rds-launch-wizard", - "type": "AWS::EC2::SecurityGroup", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-01fa68b1c6c7c7d15", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "sg-01fa68b1c6c7c7d15", - "configuration": "{\"description\":\"Created from the RDS Management Console: 2019/01/22 17:18:54\",\"groupName\":\"rds-launch-wizard\",\"ipPermissions\":[{\"fromPort\":3306,\"ipProtocol\":\"tcp\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"toPort\":3306,\"userIdGroupPairs\":[],\"ipv4Ranges\":[{\"cidrIp\":\"72.21.198.64/32\"}],\"ipRanges\":[\"72.21.198.64/32\"]}],\"ownerId\":\"XXXXXXXXXXXX\",\"groupId\":\"sg-01fa68b1c6c7c7d15\",\"ipPermissionsEgress\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[],\"ipv4Ranges\":[{\"cidrIp\":\"0.0.0.0/0\"}],\"ipRanges\":[\"0.0.0.0/0\"]}],\"tags\":[],\"vpcId\":\"vpc-0076ea32b02acb923\"}", - "description": "Created from the RDS Management Console: 2019/01/22 17:18:54", - "title": "sg-01fa68b1c6c7c7d15", - "availabilityZone": "Not Applicable", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:35.759Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-01fa68b1c6c7c7d15", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "resourceName": "rds-launch-wizard", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T17:47:02.561Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575913622561", - "groupName": "rds-launch-wizard", - "resourceType": "AWS::EC2::SecurityGroup" - } - }, - "position": { - "x": 1854.177685047177, - "y": 264.6383015392242 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "SecurityGroup-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "c7fe145269ab0891df42346458b95b9b", - "title": "sg-098929dcbed125203", - "label": "sg-098929dcb...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "c7fe145269ab0891df42346458b95b9b", - "image": "/static/media/AWSSecurityGroup.c9579f28.svg", - "cost": 0, - "private": false, - "resource": { - "id": "sg-098929dcbed125203", - "name": "default", - "type": "AWS::EC2::SecurityGroup", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-098929dcbed125203", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "resourceId": "sg-098929dcbed125203", - "configuration": "{\"description\":\"default VPC security group\",\"groupName\":\"default\",\"ipPermissions\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[{\"groupId\":\"sg-098929dcbed125203\",\"userId\":\"XXXXXXXXXXXX\"}],\"ipv4Ranges\":[],\"ipRanges\":[]}],\"ownerId\":\"XXXXXXXXXXXX\",\"groupId\":\"sg-098929dcbed125203\",\"ipPermissionsEgress\":[{\"ipProtocol\":\"-1\",\"ipv6Ranges\":[],\"prefixListIds\":[],\"userIdGroupPairs\":[],\"ipv4Ranges\":[{\"cidrIp\":\"0.0.0.0/0\"}],\"ipRanges\":[\"0.0.0.0/0\"]}],\"tags\":[],\"vpcId\":\"vpc-0076ea32b02acb923\"}", - "description": "default VPC security group", - "title": "sg-098929dcbed125203", - "availabilityZone": "Not Applicable", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:sort=groupId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0794a152787fa35da\",\"relationshipName\":\"Is associated with NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-04-30T13:46:28.249Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#SecurityGroups:sort=groupId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:security-group/sg-098929dcbed125203", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "resourceName": "default", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-01T22:11:38.776Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583100698776", - "groupName": "default", - "resourceType": "AWS::EC2::SecurityGroup" - } - }, - "position": { - "x": 1854.177685047177, - "y": 665.9850564956869 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "RouteTable-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "RouteTable", - "label": "1x RouteTable - $0", - "plainLabel": "RouteTable", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1242.177669047177, - "y": 812.7678740295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "RouteTable-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "00998f9607a3a1e58c58145f8717cdad", - "title": "rtb-0ad29a1de2a2f0eee", - "label": "rtb-0ad29a1d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "00998f9607a3a1e58c58145f8717cdad", - "image": "/static/media/Amazon-VPC_Router_light-bg.b747f357.svg", - "cost": 0, - "private": false, - "resource": { - "id": "rtb-0ad29a1de2a2f0eee", - "type": "AWS::EC2::RouteTable", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-0ad29a1de2a2f0eee", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-076682f1518a02f5b\",\"routeTableId\":\"rtb-0ad29a1de2a2f0eee\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}]", - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "rtb-0ad29a1de2a2f0eee", - "configuration": "{\"associations\":[{\"main\":true,\"routeTableAssociationId\":\"rtbassoc-076682f1518a02f5b\",\"routeTableId\":\"rtb-0ad29a1de2a2f0eee\",\"subnetId\":null,\"gatewayId\":null,\"associationState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"propagatingVgws\":[],\"routeTableId\":\"rtb-0ad29a1de2a2f0eee\",\"routes\":[{\"destinationCidrBlock\":\"10.0.0.0/16\",\"destinationIpv6CidrBlock\":null,\"destinationPrefixListId\":null,\"egressOnlyInternetGatewayId\":null,\"gatewayId\":\"local\",\"instanceId\":null,\"instanceOwnerId\":null,\"natGatewayId\":null,\"transitGatewayId\":null,\"localGatewayId\":null,\"networkInterfaceId\":null,\"origin\":\"CreateRouteTable\",\"state\":\"active\",\"vpcPeeringConnectionId\":null}],\"tags\":[],\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "rtb-0ad29a1de2a2f0eee", - "version": "1.3", - "availabilityZone": "Not Applicable", - "configurationItemCaptureTime": "2020-01-26T04:31:22.565Z", - "tags": "{}", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#RouteTables:sort=routeTableId", - "relationships": "[{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580013082565", - "perspectiveBirthDate": "2020-04-30T13:46:35.769Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#RouteTables:sort=routeTableId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:route-table/rtb-0ad29a1de2a2f0eee", - "resourceType": "AWS::EC2::RouteTable" - } - }, - "position": { - "x": 1242.177669047177, - "y": 812.7678740295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1a-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "plainLabel": "us-east-1a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1977.177688047177, - "y": 120.3166218399449 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "81ddb7622d171a9cdb9595ce3babe519", - "title": "subnet-08d2f35d04bddc8f2", - "label": "subnet-08d2f...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "81ddb7622d171a9cdb9595ce3babe519", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-08d2f35d04bddc8f2", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Public Subnet 1\",\"aws:cloudformation:logical-id\":\"PublicSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-08d2f35d04bddc8f2", - "configurationItemStatus": "OK", - "resourceId": "subnet-08d2f35d04bddc8f2", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"Name\",\"value\":\"Public Subnet 1\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet1\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2\",\"outpostArn\":null}", - "title": "subnet-08d2f35d04bddc8f2", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T17:47:02.615Z", - "tags": "{\"Name\":\"Public Subnet 1\",\"aws:cloudformation:logical-id\":\"PublicSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575913622615", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1977.177688047177, - "y": 49.8166208399449 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "99ec8c681211aedaed900aaae3d2814c", - "title": "subnet-02edb59af05e9fcca", - "label": "subnet-02edb...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "99ec8c681211aedaed900aaae3d2814c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-02edb59af05e9fcca", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"DBSubOne\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-02edb59af05e9fcca", - "configurationItemStatus": "OK", - "resourceId": "subnet-02edb59af05e9fcca", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.12.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-02edb59af05e9fcca\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"DBSubOne\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca\",\"outpostArn\":null}", - "title": "subnet-02edb59af05e9fcca", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.12.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"DBSubOne\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1977.177688047177, - "y": 120.31662183994489 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "37d5fd9ce84963f7f7b080f864022063", - "title": "subnet-0568734fa63db4c40", - "label": "subnet-05687...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "37d5fd9ce84963f7f7b080f864022063", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0568734fa63db4c40", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"natSubnetOne\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0568734fa63db4c40", - "configurationItemStatus": "OK", - "resourceId": "subnet-0568734fa63db4c40", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.10.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0568734fa63db4c40\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"natSubnetOne\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40\",\"outpostArn\":null}", - "title": "subnet-0568734fa63db4c40", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.10.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"natSubnetOne\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1977.177688047177, - "y": 190.8166228399449 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1b-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "plainLabel": "us-east-1b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1631.177678547177, - "y": 592.2678680295882 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "756ef6a2dbcf88b923f275cf8d66f749", - "title": "subnet-0b479d401405ed6e1", - "label": "subnet-0b479...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "756ef6a2dbcf88b923f275cf8d66f749", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0b479d401405ed6e1", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"DBSubTwo\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0b479d401405ed6e1", - "configurationItemStatus": "OK", - "resourceId": "subnet-0b479d401405ed6e1", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.13.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0b479d401405ed6e1\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"DBSubTwo\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1\",\"outpostArn\":null}", - "title": "subnet-0b479d401405ed6e1", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.13.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"DBSubTwo\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1548.177677047177, - "y": 531.1229236499884 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "e3891a0b295bfb017d92d43d198fba6c", - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "title": "subnet-0c0a2c9c5d5adfd20", - "label": "subnet-0c0a2c9c5d5adfd20 - $0", - "plainLabel": "subnet-0c0a2c9c5d5adfd20", - "type": "subnet", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-subnet-private_light-bg-collapsed.fb392d44.svg", - "clickedId": "e3891a0b295bfb017d92d43d198fba6c", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "subnetId": "subnet-0c0a2c9c5d5adfd20", - "configurationItemStatus": "OK", - "resourceId": "subnet-0c0a2c9c5d5adfd20", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.11.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"natSubnetTwo\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20\",\"outpostArn\":null}", - "title": "subnet-0c0a2c9c5d5adfd20", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07f6c5e98e7d5ab1d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.11.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"natSubnetTwo\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - }, - "resource": { - "id": "subnet-0c0a2c9c5d5adfd20", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"natSubnetTwo\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 1671.177680047177, - "y": 497.0178655295882 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "subnet removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkInterface-e3891a0b295bfb017d92d43d198fba6c", - "parent": "e3891a0b295bfb017d92d43d198fba6c", - "level": 5, - "title": "NetworkInterface", - "label": "1x NetworkInterface - $0", - "plainLabel": "NetworkInterface", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1671.177680047177, - "y": 431.7678640295882 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkInterface-e3891a0b295bfb017d92d43d198fba6c", - "level": 6, - "id": "6a9cfe1c78f483587b97c11ead912834", - "title": "eni-07f6c5e98e7d5ab1d", - "label": "eni-07f6c5e9...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "6a9cfe1c78f483587b97c11ead912834", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "private": false, - "resource": { - "id": "eni-07f6c5e98e7d5ab1d", - "type": "AWS::EC2::NetworkInterface", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-07f6c5e98e7d5ab1d", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0c0a2c9c5d5adfd20", - "configurationItemStatus": "OK", - "resourceId": "eni-07f6c5e98e7d5ab1d", - "configuration": "{\"association\":{\"allocationId\":\"eipalloc-0d3416c3f39153e22\",\"associationId\":\"eipassoc-8fd6fc37\",\"ipOwnerId\":\"XXXXXXXXXXXX\",\"publicDnsName\":\"ec2-3-208-0-26.compute-1.amazonaws.com\",\"publicIp\":\"3.208.0.26\"},\"attachment\":{\"attachTime\":null,\"attachmentId\":\"ela-attach-9927e290\",\"deleteOnTermination\":false,\"deviceIndex\":1,\"instanceId\":null,\"instanceOwnerId\":\"amazon-aws\",\"status\":\"attached\"},\"availabilityZone\":\"us-east-1b\",\"description\":\"Interface for NAT Gateway nat-01fc1e8bfc37935c6\",\"groups\":[],\"interfaceType\":\"nat_gateway\",\"ipv6Addresses\":[],\"macAddress\":\"12:37:c3:c9:70:ae\",\"networkInterfaceId\":\"eni-07f6c5e98e7d5ab1d\",\"outpostArn\":null,\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":\"ip-10-0-11-111.ec2.internal\",\"privateIpAddress\":\"10.0.11.111\",\"privateIpAddresses\":[{\"association\":{\"allocationId\":\"eipalloc-0d3416c3f39153e22\",\"associationId\":\"eipassoc-8fd6fc37\",\"ipOwnerId\":\"XXXXXXXXXXXX\",\"publicDnsName\":\"ec2-3-208-0-26.compute-1.amazonaws.com\",\"publicIp\":\"3.208.0.26\"},\"primary\":true,\"privateDnsName\":\"ip-10-0-11-111.ec2.internal\",\"privateIpAddress\":\"10.0.11.111\"}],\"requesterId\":\"583328430953\",\"requesterManaged\":true,\"sourceDestCheck\":false,\"status\":\"in-use\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\",\"tagSet\":[],\"vpcId\":\"vpc-0076ea32b02acb923\"}", - "description": "Interface for NAT Gateway nat-01fc1e8bfc37935c6", - "title": "eni-07f6c5e98e7d5ab1d", - "sourceDestCheck": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "relationships": "[{\"resourceType\":\"AWS::EC2::EIP\",\"resourceId\":\"eipalloc-0d3416c3f39153e22\",\"relationshipName\":\"Is attached to ElasticIp\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c0a2c9c5d5adfd20\",\"relationshipName\":\"Is contained in Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "interfaceType": "nat_gateway", - "perspectiveBirthDate": "2020-04-30T13:46:21.099Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-07f6c5e98e7d5ab1d", - "networkInterfaceId": "eni-07f6c5e98e7d5ab1d", - "awsRegion": "us-east-1", - "requesterId": "583328430953", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "requesterManaged": "true", - "configurationItemCaptureTime": "2019-01-23T01:22:35.939Z", - "privateIpAddress": "10.0.11.111", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1548206555939", - "macAddress": "12:37:c3:c9:70:ae", - "privateDnsName": "ip-10-0-11-111.ec2.internal", - "status": "in-use", - "resourceType": "AWS::EC2::NetworkInterface" - } - }, - "position": { - "x": 1671.177680047177, - "y": 431.7678640295882 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "NatGateway-e3891a0b295bfb017d92d43d198fba6c", - "parent": "e3891a0b295bfb017d92d43d198fba6c", - "level": 5, - "title": "NatGateway", - "label": "1x NatGateway - $0", - "plainLabel": "NatGateway", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_NAT-Gateway_light-bg-menu.0562a9aa.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1671.177680047177, - "y": 562.2678670295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NatGateway-e3891a0b295bfb017d92d43d198fba6c", - "level": 6, - "id": "da254cebb1a95df4daf8a3902642292f", - "title": "nat-01fc1e8bfc37935c6", - "label": "nat-01fc1e8b...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "da254cebb1a95df4daf8a3902642292f", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/Amazon-VPC_NAT-Gateway_light-bg.593a4ad8.svg", - "cost": 0, - "private": false, - "resource": { - "id": "nat-01fc1e8bfc37935c6", - "type": "AWS::EC2::NatGateway", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:natgateway/nat-01fc1e8bfc37935c6", - "region": "us-east-1", - "state": "\"available\"", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0c0a2c9c5d5adfd20", - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "nat-01fc1e8bfc37935c6", - "configuration": "{\"createTime\":1548206386000,\"natGatewayAddresses\":[{\"allocationId\":\"eipalloc-0d3416c3f39153e22\",\"networkInterfaceId\":\"eni-07f6c5e98e7d5ab1d\",\"privateIp\":\"10.0.11.111\",\"publicIp\":\"3.208.0.26\"}],\"natGatewayId\":\"nat-01fc1e8bfc37935c6\",\"state\":\"available\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"tags\":[]}", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "title": "nat-01fc1e8bfc37935c6", - "version": "1.3", - "availabilityZone": "Not Applicable", - "configurationItemCaptureTime": "2019-05-10T20:31:23.130Z", - "tags": "{}", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c0a2c9c5d5adfd20\",\"relationshipName\":\"Is contained in \"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in \"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1557520283130", - "perspectiveBirthDate": "2020-04-30T13:46:17.000Z", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:natgateway/nat-01fc1e8bfc37935c6", - "resourceCreationTime": "2019-01-23T01:19:46.000Z", - "resourceType": "AWS::EC2::NatGateway" - } - }, - "position": { - "x": 1671.177680047177, - "y": 562.2678670295883 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "d1db0e3f8aec96f8cec22a5d9855a3c3", - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "title": "subnet-08d6b86eb99b76eb7", - "label": "subnet-08d6b86eb99b76eb7 - $0", - "plainLabel": "subnet-08d6b86eb99b76eb7", - "type": "subnet", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-subnet-private_light-bg-collapsed.fb392d44.svg", - "clickedId": "d1db0e3f8aec96f8cec22a5d9855a3c3", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "subnetId": "subnet-08d6b86eb99b76eb7", - "configurationItemStatus": "OK", - "resourceId": "subnet-08d6b86eb99b76eb7", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.2.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet2\"},{\"key\":\"Name\",\"value\":\"Public Subnet 2\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7\",\"outpostArn\":null}", - "title": "subnet-08d6b86eb99b76eb7", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0794a152787fa35da\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.2.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-01T22:11:38.868Z", - "tags": "{\"Name\":\"Public Subnet 2\",\"aws:cloudformation:logical-id\":\"PublicSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583100698868", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - }, - "resource": { - "id": "subnet-08d6b86eb99b76eb7", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Public Subnet 2\",\"aws:cloudformation:logical-id\":\"PublicSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 1608.177679047177, - "y": 752.7678720295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "subnet removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkInterface-d1db0e3f8aec96f8cec22a5d9855a3c3", - "parent": "d1db0e3f8aec96f8cec22a5d9855a3c3", - "level": 5, - "title": "NetworkInterface", - "label": "1x NetworkInterface - $0", - "plainLabel": "NetworkInterface", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1608.177679047177, - "y": 752.7678720295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkInterface-d1db0e3f8aec96f8cec22a5d9855a3c3", - "level": 6, - "id": "9ec764c0563d3d0e8842a2b3b3a1ee4f", - "title": "eni-0794a152787fa35da", - "label": "eni-0794a152...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "9ec764c0563d3d0e8842a2b3b3a1ee4f", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "private": false, - "resource": { - "id": "eni-0794a152787fa35da", - "type": "AWS::EC2::NetworkInterface", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-0794a152787fa35da", - "region": "us-east-1", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-08d6b86eb99b76eb7", - "configurationItemStatus": "OK", - "resourceId": "eni-0794a152787fa35da", - "configuration": "{\"association\":{\"allocationId\":null,\"associationId\":null,\"ipOwnerId\":\"amazon-elb\",\"publicDnsName\":\"ec2-3-208-232-74.compute-1.amazonaws.com\",\"publicIp\":\"3.208.232.74\"},\"attachment\":{\"attachTime\":\"2020-03-01T21:08:17.000Z\",\"attachmentId\":\"eni-attach-06b5d949ffa8e351c\",\"deleteOnTermination\":false,\"deviceIndex\":1,\"instanceId\":null,\"instanceOwnerId\":\"amazon-elb\",\"status\":\"attached\"},\"availabilityZone\":\"us-east-1b\",\"description\":\"ELB app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c\",\"groups\":[{\"groupName\":\"default\",\"groupId\":\"sg-098929dcbed125203\"}],\"interfaceType\":\"interface\",\"ipv6Addresses\":[],\"macAddress\":\"12:6a:7f:72:d6:7d\",\"networkInterfaceId\":\"eni-0794a152787fa35da\",\"outpostArn\":null,\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":\"ip-10-0-2-200.ec2.internal\",\"privateIpAddress\":\"10.0.2.200\",\"privateIpAddresses\":[{\"association\":{\"allocationId\":null,\"associationId\":null,\"ipOwnerId\":\"amazon-elb\",\"publicDnsName\":\"ec2-3-208-232-74.compute-1.amazonaws.com\",\"publicIp\":\"3.208.232.74\"},\"primary\":true,\"privateDnsName\":\"ip-10-0-2-200.ec2.internal\",\"privateIpAddress\":\"10.0.2.200\"}],\"requesterId\":\"amazon-elb\",\"requesterManaged\":true,\"sourceDestCheck\":true,\"status\":\"in-use\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"tagSet\":[],\"vpcId\":\"vpc-0076ea32b02acb923\"}", - "description": "ELB app/scrubPuppyTest-ELB-QRAS7BC2U9NH/ce0fa51e7a00e54c", - "title": "eni-0794a152787fa35da", - "sourceDestCheck": "true", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/ec2/v2/home?region=us-east-1#NIC:sort=description", - "relationships": "[{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-098929dcbed125203\",\"relationshipName\":\"Is associated with SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Is contained in Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "interfaceType": "interface", - "perspectiveBirthDate": "2020-04-30T13:46:28.715Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-east-1#NIC:sort=description", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:network-interface/eni-0794a152787fa35da", - "networkInterfaceId": "eni-0794a152787fa35da", - "awsRegion": "us-east-1", - "requesterId": "amazon-elb", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "requesterManaged": "true", - "configurationItemCaptureTime": "2020-03-02T04:31:23.577Z", - "privateIpAddress": "10.0.2.200", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583123483577", - "macAddress": "12:6a:7f:72:d6:7d", - "privateDnsName": "ip-10-0-2-200.ec2.internal", - "status": "in-use", - "resourceType": "AWS::EC2::NetworkInterface" - } - }, - "position": { - "x": 1608.177679047177, - "y": 752.7678720295881 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "7ec8690d168d20086b9a8fe0410dfbcf", - "title": "scrubPuppyTest", - "label": "scrubPuppyTe...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "7ec8690d168d20086b9a8fe0410dfbcf", - "image": "/static/media/AWS-CloudFormation.2a622cf7.svg", - "cost": 0, - "private": false, - "resource": { - "id": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "name": "scrubPuppyTest", - "type": "AWS::CloudFormation::Stack", - "tags": "{}", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "region": "us-east-1", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"stackName\":\"scrubPuppyTest\",\"description\":\"AWS Atlas Broken Architecture\",\"creationTime\":\"Jan 22, 2019 5:02:03 PM\",\"stackStatus\":\"DELETE_FAILED\",\"stackStatusReason\":\"The following resource(s) failed to delete: [InternetGateway, PublicSubnet2, AttachGateway, PublicSubnet1, VPC]. \",\"disableRollback\":false,\"notificationARNs\":[],\"outputs\":[{\"outputKey\":\"VPC\",\"outputValue\":\"vpc-0076ea32b02acb923\",\"description\":\"VPC\"},{\"outputKey\":\"AZ1\",\"outputValue\":\"us-east-1a\",\"description\":\"Availability Zone 1\"},{\"outputKey\":\"AZ2\",\"outputValue\":\"us-east-1b\",\"description\":\"Availability Zone 2\"}],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"ASConfig\\\",\\\"physicalResourceId\\\":\\\"scrubPuppyTest-ASConfig-61UDFEKDK3BP\\\",\\\"resourceType\\\":\\\"AWS::AutoScaling::LaunchConfiguration\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:03:30 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ASGroup\\\",\\\"physicalResourceId\\\":\\\"scrubPuppyTest-ASGroup-1B2JDUBTC1RZ6\\\",\\\"resourceType\\\":\\\"AWS::AutoScaling::AutoScalingGroup\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:03:28 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"AttachGateway\\\",\\\"physicalResourceId\\\":\\\"scrub-Attac-QATUMOVN7W2E\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 10:01:40 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_FAILED\\\",\\\"resourceStatusReason\\\":\\\"Network vpc-0076ea32b02acb923 has some mapped public address(es). Please unmap those public address(es) before detaching the gateway. (Service: AmazonEC2; Status Code: 400; Error Code: DependencyViolation; Request ID: c78cc769-53fa-45fd-a196-f52a7f8b6029)\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DefaultPublicRoute\\\",\\\"physicalResourceId\\\":\\\"scrub-Defau-1H8QHCGIY7DDS\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:01:48 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ELB\\\",\\\"physicalResourceId\\\":\\\"scrubPuppyTest-ELB-QRAS7BC2U9NH\\\",\\\"resourceType\\\":\\\"AWS::ElasticLoadBalancing::LoadBalancer\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:03:29 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"InternetGateway\\\",\\\"physicalResourceId\\\":\\\"igw-0f3bfd55192eb6d0b\\\",\\\"resourceType\\\":\\\"AWS::EC2::InternetGateway\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 10:19:39 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_FAILED\\\",\\\"resourceStatusReason\\\":\\\"The internetGateway \\\\u0027igw-0f3bfd55192eb6d0b\\\\u0027 has dependencies and cannot be deleted. (Service: AmazonEC2; Status Code: 400; Error Code: DependencyViolation; Request ID: cb435f13-d3b4-445d-b576-f72f0d00caf8)\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"MyDB\\\",\\\"physicalResourceId\\\":\\\"sm10idkcxqt741m\\\",\\\"resourceType\\\":\\\"AWS::RDS::DBInstance\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:10:42 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicRouteTable\\\",\\\"physicalResourceId\\\":\\\"rtb-04265c0c9b19aad74\\\",\\\"resourceType\\\":\\\"AWS::EC2::RouteTable\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:03 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicSubnet1\\\",\\\"physicalResourceId\\\":\\\"subnet-08d2f35d04bddc8f2\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:57:58 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_FAILED\\\",\\\"resourceStatusReason\\\":\\\"The subnet \\\\u0027subnet-08d2f35d04bddc8f2\\\\u0027 has dependencies and cannot be deleted. (Service: AmazonEC2; Status Code: 400; Error Code: DependencyViolation; Request ID: 103a6c7f-1498-4bdf-b4c6-63c72bc0e922)\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicSubnet1RouteTableAssociation\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0f4c1ad760f32fb56\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:01:48 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicSubnet2\\\",\\\"physicalResourceId\\\":\\\"subnet-08d6b86eb99b76eb7\\\",\\\"resourceType\\\":\\\"AWS::EC2::Subnet\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:56:55 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_FAILED\\\",\\\"resourceStatusReason\\\":\\\"The subnet \\\\u0027subnet-08d6b86eb99b76eb7\\\\u0027 has dependencies and cannot be deleted. (Service: AmazonEC2; Status Code: 400; Error Code: DependencyViolation; Request ID: 4b812e8e-ac43-4f47-a481-651c82d8e265)\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"PublicSubnet2RouteTableAssociation\\\",\\\"physicalResourceId\\\":\\\"rtbassoc-0ed1b6c0783367411\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:01:49 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"SecurityGroup\\\",\\\"physicalResourceId\\\":\\\"sg-07748849e5028aaa6\\\",\\\"resourceType\\\":\\\"AWS::EC2::SecurityGroup\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:43 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"VPC\\\",\\\"physicalResourceId\\\":\\\"vpc-0076ea32b02acb923\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPC\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 10:16:55 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_FAILED\\\",\\\"resourceStatusReason\\\":\\\"The vpc \\\\u0027vpc-0076ea32b02acb923\\\\u0027 has dependencies and cannot be deleted. (Service: AmazonEC2; Status Code: 400; Error Code: DependencyViolation; Request ID: e35a1eec-33d0-4eea-b9a9-039c3612299a)\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"instance1\\\",\\\"physicalResourceId\\\":\\\"i-0449392409ff04c27\\\",\\\"resourceType\\\":\\\"AWS::EC2::Instance\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:40 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"instance2\\\",\\\"physicalResourceId\\\":\\\"i-0e4c3e8b707b70ea1\\\",\\\"resourceType\\\":\\\"AWS::EC2::Instance\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:40 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"instance3\\\",\\\"physicalResourceId\\\":\\\"i-08e2ac1d4e4c19b00\\\",\\\"resourceType\\\":\\\"AWS::EC2::Instance\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:25 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"instance4\\\",\\\"physicalResourceId\\\":\\\"i-0a5d568e1aa1a2595\\\",\\\"resourceType\\\":\\\"AWS::EC2::Instance\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 22, 2019 9:02:42 PM\\\",\\\"resourceStatus\\\":\\\"DELETE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"rtbassoc-0ed1b6c0783367411\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"rtbassoc-0f4c1ad760f32fb56\\\",\\\"resourceType\\\":\\\"AWS::EC2::SubnetRouteTableAssociation\\\"},{\\\"resourceId\\\":\\\"scrub-Attac-QATUMOVN7W2E\\\",\\\"resourceType\\\":\\\"AWS::EC2::VPCGatewayAttachment\\\"},{\\\"resourceId\\\":\\\"scrub-Defau-1H8QHCGIY7DDS\\\",\\\"resourceType\\\":\\\"AWS::EC2::Route\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "AWS Atlas Broken Architecture", - "resourceName": "scrubPuppyTest", - "title": "scrubPuppyTest", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-05T15:31:23.013Z", - "tags": "{}", - "relationships": "[{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0449392409ff04c27\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e2ac1d4e4c19b00\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0a5d568e1aa1a2595\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0e4c3e8b707b70ea1\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-0f3bfd55192eb6d0b\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::RDS::DBInstance\",\"resourceName\":\"sm10idkcxqt741m\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-04265c0c9b19aad74\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::AutoScaling::LaunchConfiguration\",\"resourceId\":\"scrubPuppyTest-ASConfig-61UDFEKDK3BP\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::AutoScaling::AutoScalingGroup\",\"resourceId\":\"scrubPuppyTest-ASGroup-1B2JDUBTC1RZ6\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::ElasticLoadBalancing::LoadBalancer\",\"resourceId\":\"scrubPuppyTest-ELB-QRAS7BC2U9NH\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-07748849e5028aaa6\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d2f35d04bddc8f2\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Contains \"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Contains \"}]", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580916683013", - "perspectiveBirthDate": "2020-04-30T13:47:14.077Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "resourceCreationTime": "2019-01-22T17:02:03.643Z", - "resourceType": "AWS::CloudFormation::Stack" - } - }, - "position": { - "x": 2120.177692047177, - "y": -105.14497283341467 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "722bc33b6985ef8d6f0761abe95c86b6", - "title": "aws:cloudformation:logical-id : PrivateSubnet3", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "722bc33b6985ef8d6f0761abe95c86b6", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "aws:cloudformation:logical-id", - "value": "PrivateSubnet3", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "aws:cloudformation:logical-id", - "awsRegion": "global", - "perspectiveBirthDate": "2020-04-30T13:46:34.585Z", - "title": "aws:cloudformation:logical-id : PrivateSubnet3", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "PrivateSubnet3" - } - }, - "position": { - "x": 89.1776370471785, - "y": 295.1051573778162 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - } - ], - "edges": [ - { - "data": { - "id": "168329bc87d04c59a0dfcf57e308887b-eed7cfd795ed2a6be074e6b05ee167b8", - "label": "vpc-089b1758d1067db7a-aws:cloudformation:logical-id : VPC", - "isSourceParent": true, - "source": "168329bc87d04c59a0dfcf57e308887b", - "sourceMetadata": { - "childIds": [ - "1a9ff84674ac8b85208510868fe3d68b", - "11c5205b1d9b8767307e6fa87a503b5a", - "940b8d0b5d6de4e351b1786d6dbad883", - "51aa5e736e7d393fc2dd6d401dd9e0e6", - "65fc9452a8f8831e59362777183641a7", - "0a0500dfcfe304d31fc87b1b5484bcf4", - "1baa0c85eaf216ecba761aed99ba2a1c", - "23458cd7649d49a42d3d7e4b9f86f24a", - "4810ea3e92ec39f69e499eeef3901f80", - "345041abed895b869d9f5e75f22f93dc", - "69b6cf7c45797d6b9a3de1a72095aad3", - "c10e023e5e9962486a27937464b17ef6", - "0255dfb05a166f3aa17ef7aeeb5ac814", - "0f618ce877be074b636a6d21db2ce280", - "2a6bd26eff758a6617e224ed2ed884fe" - ] - }, - "target": "eed7cfd795ed2a6be074e6b05ee167b8", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d-9dfd73f21cd985edf07317eab2c1586c", - "label": "vpc-0076ea32b02acb923-aws:cloudformation:stack-name : scrubPuppyTest", - "isSourceParent": true, - "source": "179970d75bc02624659954aafba52d0d", - "sourceMetadata": { - "childIds": [ - "4a95e5a7ff3a5954270e05794b5718c1", - "0374431adb26a35d96b31df60ec660b8", - "c1cd1acf43d99f037439401f6ea5f068", - "0f8de025e98a074027a24404071e99af", - "c7fe145269ab0891df42346458b95b9b", - "00998f9607a3a1e58c58145f8717cdad", - "81ddb7622d171a9cdb9595ce3babe519", - "99ec8c681211aedaed900aaae3d2814c", - "37d5fd9ce84963f7f7b080f864022063", - "756ef6a2dbcf88b923f275cf8d66f749", - "6a9cfe1c78f483587b97c11ead912834", - "da254cebb1a95df4daf8a3902642292f", - "9ec764c0563d3d0e8842a2b3b3a1ee4f" - ] - }, - "target": "9dfd73f21cd985edf07317eab2c1586c", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "168329bc87d04c59a0dfcf57e308887b-50b80f3646fc11c8ae880087bd9769c6", - "label": "vpc-089b1758d1067db7a-Name : deepracer-vpc", - "isSourceParent": true, - "source": "168329bc87d04c59a0dfcf57e308887b", - "sourceMetadata": { - "childIds": [ - "1a9ff84674ac8b85208510868fe3d68b", - "11c5205b1d9b8767307e6fa87a503b5a", - "940b8d0b5d6de4e351b1786d6dbad883", - "51aa5e736e7d393fc2dd6d401dd9e0e6", - "65fc9452a8f8831e59362777183641a7", - "0a0500dfcfe304d31fc87b1b5484bcf4", - "1baa0c85eaf216ecba761aed99ba2a1c", - "23458cd7649d49a42d3d7e4b9f86f24a", - "4810ea3e92ec39f69e499eeef3901f80", - "345041abed895b869d9f5e75f22f93dc", - "69b6cf7c45797d6b9a3de1a72095aad3", - "c10e023e5e9962486a27937464b17ef6", - "0255dfb05a166f3aa17ef7aeeb5ac814", - "0f618ce877be074b636a6d21db2ce280", - "2a6bd26eff758a6617e224ed2ed884fe" - ] - }, - "target": "50b80f3646fc11c8ae880087bd9769c6", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d-7ec8690d168d20086b9a8fe0410dfbcf", - "label": "vpc-0076ea32b02acb923-scrubPuppyTest", - "isSourceParent": true, - "source": "179970d75bc02624659954aafba52d0d", - "sourceMetadata": { - "childIds": [ - "4a95e5a7ff3a5954270e05794b5718c1", - "0374431adb26a35d96b31df60ec660b8", - "c1cd1acf43d99f037439401f6ea5f068", - "0f8de025e98a074027a24404071e99af", - "c7fe145269ab0891df42346458b95b9b", - "00998f9607a3a1e58c58145f8717cdad", - "81ddb7622d171a9cdb9595ce3babe519", - "99ec8c681211aedaed900aaae3d2814c", - "37d5fd9ce84963f7f7b080f864022063", - "756ef6a2dbcf88b923f275cf8d66f749", - "6a9cfe1c78f483587b97c11ead912834", - "da254cebb1a95df4daf8a3902642292f", - "9ec764c0563d3d0e8842a2b3b3a1ee4f" - ] - }, - "target": "7ec8690d168d20086b9a8fe0410dfbcf", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "168329bc87d04c59a0dfcf57e308887b-5a69b0854dea77a8fb6f1024c34881b9", - "label": "vpc-089b1758d1067db7a-deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "isSourceParent": true, - "source": "168329bc87d04c59a0dfcf57e308887b", - "sourceMetadata": { - "childIds": [ - "1a9ff84674ac8b85208510868fe3d68b", - "11c5205b1d9b8767307e6fa87a503b5a", - "940b8d0b5d6de4e351b1786d6dbad883", - "51aa5e736e7d393fc2dd6d401dd9e0e6", - "65fc9452a8f8831e59362777183641a7", - "0a0500dfcfe304d31fc87b1b5484bcf4", - "1baa0c85eaf216ecba761aed99ba2a1c", - "23458cd7649d49a42d3d7e4b9f86f24a", - "4810ea3e92ec39f69e499eeef3901f80", - "345041abed895b869d9f5e75f22f93dc", - "69b6cf7c45797d6b9a3de1a72095aad3", - "c10e023e5e9962486a27937464b17ef6", - "0255dfb05a166f3aa17ef7aeeb5ac814", - "0f618ce877be074b636a6d21db2ce280", - "2a6bd26eff758a6617e224ed2ed884fe" - ] - }, - "target": "5a69b0854dea77a8fb6f1024c34881b9", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d-eed7cfd795ed2a6be074e6b05ee167b8", - "label": "vpc-0076ea32b02acb923-aws:cloudformation:logical-id : VPC", - "isSourceParent": true, - "source": "179970d75bc02624659954aafba52d0d", - "sourceMetadata": { - "childIds": [ - "4a95e5a7ff3a5954270e05794b5718c1", - "0374431adb26a35d96b31df60ec660b8", - "c1cd1acf43d99f037439401f6ea5f068", - "0f8de025e98a074027a24404071e99af", - "c7fe145269ab0891df42346458b95b9b", - "00998f9607a3a1e58c58145f8717cdad", - "81ddb7622d171a9cdb9595ce3babe519", - "99ec8c681211aedaed900aaae3d2814c", - "37d5fd9ce84963f7f7b080f864022063", - "756ef6a2dbcf88b923f275cf8d66f749", - "6a9cfe1c78f483587b97c11ead912834", - "da254cebb1a95df4daf8a3902642292f", - "9ec764c0563d3d0e8842a2b3b3a1ee4f" - ] - }, - "target": "eed7cfd795ed2a6be074e6b05ee167b8", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d-35c575cd5decfde059d197d26a9090c0", - "label": "vpc-0076ea32b02acb923-Name : Broken Arch VPC", - "isSourceParent": true, - "source": "179970d75bc02624659954aafba52d0d", - "sourceMetadata": { - "childIds": [ - "4a95e5a7ff3a5954270e05794b5718c1", - "0374431adb26a35d96b31df60ec660b8", - "c1cd1acf43d99f037439401f6ea5f068", - "0f8de025e98a074027a24404071e99af", - "c7fe145269ab0891df42346458b95b9b", - "00998f9607a3a1e58c58145f8717cdad", - "81ddb7622d171a9cdb9595ce3babe519", - "99ec8c681211aedaed900aaae3d2814c", - "37d5fd9ce84963f7f7b080f864022063", - "756ef6a2dbcf88b923f275cf8d66f749", - "6a9cfe1c78f483587b97c11ead912834", - "da254cebb1a95df4daf8a3902642292f", - "9ec764c0563d3d0e8842a2b3b3a1ee4f" - ] - }, - "target": "35c575cd5decfde059d197d26a9090c0", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d-da90e1433acef6889fcc14758e198d4f", - "label": "vpc-0076ea32b02acb923-aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72", - "isSourceParent": true, - "source": "179970d75bc02624659954aafba52d0d", - "sourceMetadata": { - "childIds": [ - "4a95e5a7ff3a5954270e05794b5718c1", - "0374431adb26a35d96b31df60ec660b8", - "c1cd1acf43d99f037439401f6ea5f068", - "0f8de025e98a074027a24404071e99af", - "c7fe145269ab0891df42346458b95b9b", - "00998f9607a3a1e58c58145f8717cdad", - "81ddb7622d171a9cdb9595ce3babe519", - "99ec8c681211aedaed900aaae3d2814c", - "37d5fd9ce84963f7f7b080f864022063", - "756ef6a2dbcf88b923f275cf8d66f749", - "6a9cfe1c78f483587b97c11ead912834", - "da254cebb1a95df4daf8a3902642292f", - "9ec764c0563d3d0e8842a2b3b3a1ee4f" - ] - }, - "target": "da90e1433acef6889fcc14758e198d4f", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-1baa0c85eaf216ecba761aed99ba2a1c", - "label": "subnet-05a7a309166daae2d-acl-0d850673eac288a58", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "1baa0c85eaf216ecba761aed99ba2a1c", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-940b8d0b5d6de4e351b1786d6dbad883", - "label": "subnet-05a7a309166daae2d-rtb-078dc858fdb30c749", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "940b8d0b5d6de4e351b1786d6dbad883", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-5a69b0854dea77a8fb6f1024c34881b9", - "label": "subnet-05a7a309166daae2d-deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "5a69b0854dea77a8fb6f1024c34881b9", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-2062cbef55fefda844b410fc26a2235a", - "label": "subnet-05a7a309166daae2d-aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "2062cbef55fefda844b410fc26a2235a", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-722bc33b6985ef8d6f0761abe95c86b6", - "label": "subnet-05a7a309166daae2d-aws:cloudformation:logical-id : PrivateSubnet3", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "722bc33b6985ef8d6f0761abe95c86b6", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "69b6cf7c45797d6b9a3de1a72095aad3-909aa7434f9e20fe55f7fd687cb6718e", - "label": "subnet-05a7a309166daae2d-aws:cloudformation:stack-name : deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0", - "source": "69b6cf7c45797d6b9a3de1a72095aad3", - "sourceMetadata": { - "childIds": [] - }, - "target": "909aa7434f9e20fe55f7fd687cb6718e", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - } - ] - }, - "style": [ - { - "selector": ".image", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "1", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "data(borderStyle)", - "border-width": "data(borderSize)", - "border-color": "data(borderColour)" - } - }, - { - "selector": ".vpc", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(104,61,194)", - "background-opacity": "0.05", - "text-margin-y": "-4.5", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(104,61,194)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(104,61,194)", - "text-background-color": "rgb(104,61,194)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".vpc:active", - "style": { - "label": "data(label)", - "overlay-color": "rgb(104,61,194)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(subnetColour)", - "background-opacity": "0.05", - "border-style": "solid", - "border-width": "1px", - "border-color": "data(subnetColour)", - "text-background-opacity": "1", - "text-border-color": "data(subnetColour)", - "text-background-color": "data(subnetColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet:active", - "style": { - "label": "data(label)", - "overlay-color": "data(subnetColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".type", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(84,91,100)", - "background-opacity": "0.05", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "text-background-padding": "3px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region:active", - "style": { - "label": "data(label)", - "overlay-color": "data(regionColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(regionColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(regionColour)", - "text-background-color": "data(regionColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone:active", - "style": { - "label": "data(label)", - "overlay-color": "rgb(247,153,31)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "dashed", - "border-width": "1px", - "border-color": "rgb(247,153,31)", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(247,153,31)", - "text-background-color": "rgb(247,153,31)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(0,0,0)" - } - }, - { - "selector": ".account:active", - "style": { - "label": "data(label)", - "overlay-color": "data(accountColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".account", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "8", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(accountColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(accountColour)", - "text-background-color": "data(accountColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": "node.highlight", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "overlay-color": "rgb(84,91,100)", - "overlay-opacity": "0.45", - "background-opacity": "1", - "shape": "square", - "color": "rgb(84,91,100)", - "border-style": "data(borderStyle)", - "border-width": "1px", - "border-color": "data(borderColour)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.clicked", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-opacity": "1", - "shape": "square", - "color": "rgb(35,47,62)", - "border-style": "solid", - "border-width": "3px", - "border-color": "rgb(35,47,62)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.softDelete", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.5", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "opacity": "0.25" - } - }, - { - "selector": "edge", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "1px", - "line-style": "solid", - "line-color": "rgb(84,91,100)" - } - }, - { - "selector": "edge.highlight", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "2px", - "line-style": "dashed", - "line-color": "rgb(84,91,100)" - } - }, - { - "selector": "edge.cy-expand-collapse-meta-edge", - "style": { - "curve-style": "unbundled-bezier", - "control-point-distances": "0px 0px 0px", - "line-style": "dashed", - "line-color": "rgb(236,114,17)", - "line-dash-pattern": "6 3", - "width": "2px" - } - }, - { - "selector": "node.cy-expand-collapse-collapsed-node", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(255,255,255)", - "background-opacity": "1", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "background-image": "data(image)", - "background-fit": "none", - "shape": "roundrectangle", - "color": "rgb(255,255,255)", - "background-width": "50%", - "background-height": "50%", - "padding": "100px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - } - ], - "data": {}, - "zoomingEnabled": true, - "userZoomingEnabled": true, - "zoom": 0.584215929747919, - "minZoom": 0.5, - "maxZoom": 2.5, - "panningEnabled": true, - "userPanningEnabled": true, - "pan": { - "x": 90.95359286271776, - "y": 134.16225073159305 - }, - "boxSelectionEnabled": true, - "renderer": { - "name": "canvas" - } -} \ No newline at end of file diff --git a/source/backend/functions/drawio/test-events/complexArchitecture2.json b/source/backend/functions/drawio/test-events/complexArchitecture2.json deleted file mode 100644 index 59f39e7b..00000000 --- a/source/backend/functions/drawio/test-events/complexArchitecture2.json +++ /dev/null @@ -1,5103 +0,0 @@ -{ - "elements": { - "nodes": [ - { - "data": { - "id": "XXXXXXXXXXXX-undefined", - "level": 0, - "title": "XXXXXXXXXXXX", - "label": "XXXXXXXXXXXX - $0", - "plainLabel": "XXXXXXXXXXXX", - "type": "account", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWS-Cloud-alt_light-bg.4c3dacc7.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 717.0899840149428, - "y": 501.0480565785545 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "account removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-east-1", - "label": "us-east-1 - $0", - "plainLabel": "us-east-1", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Region_light-bg.1ea0f82f.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 577.7291030471665, - "y": 917.7216298018847 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "179970d75bc02624659954aafba52d0d", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-0076ea32b02acb923", - "label": "vpc-0076ea32b02acb923 - $0", - "plainLabel": "vpc-0076ea32b02acb923", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "179970d75bc02624659954aafba52d0d", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-0076ea32b02acb923", - "configuration": "{\"cidrBlock\":\"10.0.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-0091c61591e75947c\",\"cidrBlock\":\"10.0.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"},{\"key\":\"Name\",\"value\":\"Broken Arch VPC\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"VPC\"}]}", - "title": "vpc-0076ea32b02acb923", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0794a152787fa35da\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07f6c5e98e7d5ab1d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-0f3bfd55192eb6d0b\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0ad29a1de2a2f0eee\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-01fa68b1c6c7c7d15\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-098929dcbed125203\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02edb59af05e9fcca\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0568734fa63db4c40\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d2f35d04bddc8f2\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-08d6b86eb99b76eb7\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0b479d401405ed6e1\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c0a2c9c5d5adfd20\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-0076ea32b02acb923", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-01T22:11:38.615Z", - "tags": "{\"Name\":\"Broken Arch VPC\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583100698615", - "isDefault": "false", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-0076ea32b02acb923", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"Broken Arch VPC\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-0076ea32b02acb923", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 605.4701174931312, - "y": 596.7216218018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1b-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "plainLabel": "us-east-1b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 587.7751217001751, - "y": 531.4716203018849 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "e3891a0b295bfb017d92d43d198fba6c", - "title": "subnet-0c0a2c9c5d5adfd20", - "label": "subnet-0c0a2...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "e3891a0b295bfb017d92d43d198fba6c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0c0a2c9c5d5adfd20", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"natSubnetTwo\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0c0a2c9c5d5adfd20", - "configurationItemStatus": "OK", - "resourceId": "subnet-0c0a2c9c5d5adfd20", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.11.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0c0a2c9c5d5adfd20\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"natSubnetTwo\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20\",\"outpostArn\":null}", - "title": "subnet-0c0a2c9c5d5adfd20", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07f6c5e98e7d5ab1d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0c0a2c9c5d5adfd20", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.11.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"natSubnetTwo\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 650.7751227001751, - "y": 531.4716203018849 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "756ef6a2dbcf88b923f275cf8d66f749", - "title": "subnet-0b479d401405ed6e1", - "label": "subnet-0b479...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "756ef6a2dbcf88b923f275cf8d66f749", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0b479d401405ed6e1", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"DBSubTwo\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0b479d401405ed6e1", - "configurationItemStatus": "OK", - "resourceId": "subnet-0b479d401405ed6e1", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.13.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0b479d401405ed6e1\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"DBSubTwo\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1\",\"outpostArn\":null}", - "title": "subnet-0b479d401405ed6e1", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0b479d401405ed6e1", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.13.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"DBSubTwo\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 524.7751207001751, - "y": 531.4716203018849 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1b-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "d1db0e3f8aec96f8cec22a5d9855a3c3", - "title": "subnet-08d6b86eb99b76eb7", - "label": "subnet-08d6b...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "d1db0e3f8aec96f8cec22a5d9855a3c3", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-08d6b86eb99b76eb7", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Public Subnet 2\",\"aws:cloudformation:logical-id\":\"PublicSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-08d6b86eb99b76eb7", - "configurationItemStatus": "OK", - "resourceId": "subnet-08d6b86eb99b76eb7", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.2.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-08d6b86eb99b76eb7\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet2\"},{\"key\":\"Name\",\"value\":\"Public Subnet 2\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7\",\"outpostArn\":null}", - "title": "subnet-08d6b86eb99b76eb7", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0794a152787fa35da\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d6b86eb99b76eb7", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.2.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-01T22:11:38.868Z", - "tags": "{\"Name\":\"Public Subnet 2\",\"aws:cloudformation:logical-id\":\"PublicSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583100698868", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 587.7751217001751, - "y": 531.4716203018849 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1a-179970d75bc02624659954aafba52d0d", - "parent": "179970d75bc02624659954aafba52d0d", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "plainLabel": "us-east-1a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 623.1651132860873, - "y": 661.9716233018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "37d5fd9ce84963f7f7b080f864022063", - "title": "subnet-0568734fa63db4c40", - "label": "subnet-05687...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "37d5fd9ce84963f7f7b080f864022063", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0568734fa63db4c40", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"natSubnetOne\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0568734fa63db4c40", - "configurationItemStatus": "OK", - "resourceId": "subnet-0568734fa63db4c40", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.10.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-0568734fa63db4c40\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"natSubnetOne\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40\",\"outpostArn\":null}", - "title": "subnet-0568734fa63db4c40", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0568734fa63db4c40", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.10.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"natSubnetOne\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 560.1651122860873, - "y": 661.9716233018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "81ddb7622d171a9cdb9595ce3babe519", - "title": "subnet-08d2f35d04bddc8f2", - "label": "subnet-08d2f...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "81ddb7622d171a9cdb9595ce3babe519", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-08d2f35d04bddc8f2", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Public Subnet 1\",\"aws:cloudformation:logical-id\":\"PublicSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-08d2f35d04bddc8f2", - "configurationItemStatus": "OK", - "resourceId": "subnet-08d2f35d04bddc8f2", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-08d2f35d04bddc8f2\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"scrubPuppyTest\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\"},{\"key\":\"Name\",\"value\":\"Public Subnet 1\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet1\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2\",\"outpostArn\":null}", - "title": "subnet-08d2f35d04bddc8f2", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-08d2f35d04bddc8f2", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T17:47:02.615Z", - "tags": "{\"Name\":\"Public Subnet 1\",\"aws:cloudformation:logical-id\":\"PublicSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/scrubPuppyTest/70c711f0-1e67-11e9-82d3-12a9adafee72\",\"aws:cloudformation:stack-name\":\"scrubPuppyTest\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575913622615", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 623.1651132860873, - "y": 661.9716233018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-179970d75bc02624659954aafba52d0d", - "level": 4, - "id": "99ec8c681211aedaed900aaae3d2814c", - "title": "subnet-02edb59af05e9fcca", - "label": "subnet-02edb...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "99ec8c681211aedaed900aaae3d2814c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-02edb59af05e9fcca", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"DBSubOne\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-02edb59af05e9fcca", - "configurationItemStatus": "OK", - "resourceId": "subnet-02edb59af05e9fcca", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.12.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-02edb59af05e9fcca\",\"vpcId\":\"vpc-0076ea32b02acb923\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"DBSubOne\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca\",\"outpostArn\":null}", - "title": "subnet-02edb59af05e9fcca", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0db1f5058fee61b45\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0076ea32b02acb923\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0076ea32b02acb923", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-02edb59af05e9fcca", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.12.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-06T22:31:23.491Z", - "tags": "{\"Name\":\"DBSubOne\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549492283491", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 686.1651142860873, - "y": 661.9716233018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "168329bc87d04c59a0dfcf57e308887b", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-089b1758d1067db7a", - "label": "vpc-089b1758d1067db7a - $0", - "plainLabel": "vpc-089b1758d1067db7a", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "168329bc87d04c59a0dfcf57e308887b", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-089b1758d1067db7a", - "configuration": "{\"cidrBlock\":\"10.0.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-0d35fedc854ad7ed9\",\"cidrBlock\":\"10.0.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"Name\",\"value\":\"deepracer-vpc\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"VPC\"}]}", - "title": "vpc-089b1758d1067db7a", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0c03a25d038bf93e6\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-025c60fccad8c4442\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-071dfb9ffa56c7a9e\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-084b36e71469b05ec\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0904ed6dede7b558c\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-03dd856b67aab628b\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0cd26d597ed691011\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00508e5188a6fb0a6\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-017c15f284005248c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-03cbc2de4295a8eb3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-05a7a309166daae2d\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-065649d1429d4d9f7\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0baf67c29df7cb4b3\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0e8476fca312a4e01\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-089b1758d1067db7a", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.610Z", - "tags": "{\"Name\":\"deepracer-vpc\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882610", - "isDefault": "false", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-089b1758d1067db7a", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"deepracer-vpc\",\"aws:cloudformation:logical-id\":\"VPC\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-089b1758d1067db7a", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 596.4384099654383, - "y": 917.7216298018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "plainLabel": "us-east-1a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 411.9384054654381, - "y": 852.4716283018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "966b9ba76194634b368009d59dccbb73", - "title": "subnet-00508e5188a6fb0a6", - "label": "subnet-00508...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "966b9ba76194634b368009d59dccbb73", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-00508e5188a6fb0a6", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicSubnet\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-00508e5188a6fb0a6", - "configurationItemStatus": "OK", - "resourceId": "subnet-00508e5188a6fb0a6", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.0.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-00508e5188a6fb0a6\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PublicSubnet\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6\",\"outpostArn\":null}", - "title": "subnet-00508e5188a6fb0a6", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-025c60fccad8c4442\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-084b36e71469b05ec\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-00508e5188a6fb0a6", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.357Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PublicSubnet\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882357", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 380.43840496543817, - "y": 852.4716283018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-east-1a-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "345041abed895b869d9f5e75f22f93dc", - "title": "subnet-03cbc2de4295a8eb3", - "label": "subnet-03cbc...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "345041abed895b869d9f5e75f22f93dc", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-03cbc2de4295a8eb3", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-03cbc2de4295a8eb3", - "configurationItemStatus": "OK", - "resourceId": "subnet-03cbc2de4295a8eb3", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-03cbc2de4295a8eb3\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet1\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3\",\"outpostArn\":null}", - "title": "subnet-03cbc2de4295a8eb3", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-03cbc2de4295a8eb3", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet1\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 443.4384059654381, - "y": 852.4716283018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1f-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1f", - "label": "us-east-1f - $0", - "plainLabel": "us-east-1f", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 566.4384089654382, - "y": 852.4716283018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1f-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "c10e023e5e9962486a27937464b17ef6", - "title": "subnet-0baf67c29df7cb4b3", - "label": "subnet-0baf6...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "c10e023e5e9962486a27937464b17ef6", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-0baf67c29df7cb4b3", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet6\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0baf67c29df7cb4b3", - "configurationItemStatus": "OK", - "resourceId": "subnet-0baf67c29df7cb4b3", - "configuration": "{\"availabilityZone\":\"us-east-1f\",\"availabilityZoneId\":\"use1-az5\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.6.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0baf67c29df7cb4b3\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet6\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3\",\"outpostArn\":null}", - "title": "subnet-0baf67c29df7cb4b3", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1f", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0baf67c29df7cb4b3", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.6.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T02:55:43.147Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet6\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549940143147", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 566.4384089654382, - "y": 852.4716283018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1c-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1c", - "label": "us-east-1c - $0", - "plainLabel": "us-east-1c", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 689.4384119654381, - "y": 874.464563236978 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1c-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "69b6cf7c45797d6b9a3de1a72095aad3", - "title": "subnet-05a7a309166daae2d", - "label": "subnet-05a7a...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "69b6cf7c45797d6b9a3de1a72095aad3", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-05a7a309166daae2d", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet3\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-05a7a309166daae2d", - "configurationItemStatus": "OK", - "resourceId": "subnet-05a7a309166daae2d", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.3.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-05a7a309166daae2d\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet3\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d\",\"outpostArn\":null}", - "title": "subnet-05a7a309166daae2d", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-05a7a309166daae2d", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.3.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet3\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 689.4384119654381, - "y": 874.464563236978 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1e-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1e", - "label": "us-east-1e - $0", - "plainLabel": "us-east-1e", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 812.4384149654383, - "y": 874.464563236978 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1e-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "0f618ce877be074b636a6d21db2ce280", - "title": "subnet-0e8476fca312a4e01", - "label": "subnet-0e847...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0f618ce877be074b636a6d21db2ce280", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-0e8476fca312a4e01", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet5\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0e8476fca312a4e01", - "configurationItemStatus": "OK", - "resourceId": "subnet-0e8476fca312a4e01", - "configuration": "{\"availabilityZone\":\"us-east-1e\",\"availabilityZoneId\":\"use1-az3\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.5.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0e8476fca312a4e01\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet5\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01\",\"outpostArn\":null}", - "title": "subnet-0e8476fca312a4e01", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1e", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-0e8476fca312a4e01", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.5.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet5\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 812.4384149654383, - "y": 874.464563236978 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1d-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1d", - "label": "us-east-1d - $0", - "plainLabel": "us-east-1d", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 380.43840496543817, - "y": 982.9716313018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1d-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "2a6bd26eff758a6617e224ed2ed884fe", - "title": "subnet-017c15f284005248c", - "label": "subnet-017c1...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "2a6bd26eff758a6617e224ed2ed884fe", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-017c15f284005248c", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet4\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-017c15f284005248c", - "configurationItemStatus": "OK", - "resourceId": "subnet-017c15f284005248c", - "configuration": "{\"availabilityZone\":\"us-east-1d\",\"availabilityZoneId\":\"use1-az6\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.4.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-017c15f284005248c\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"},{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet4\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c\",\"outpostArn\":null}", - "title": "subnet-017c15f284005248c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1d", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-017c15f284005248c", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.4.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T04:31:22.357Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet4\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549945882357", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 380.43840496543817, - "y": 982.9716313018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1b-168329bc87d04c59a0dfcf57e308887b", - "parent": "168329bc87d04c59a0dfcf57e308887b", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "plainLabel": "us-east-1b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 503.4384079654383, - "y": 982.9716313018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-168329bc87d04c59a0dfcf57e308887b", - "level": 4, - "id": "0255dfb05a166f3aa17ef7aeeb5ac814", - "title": "subnet-065649d1429d4d9f7", - "label": "subnet-06564...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "0255dfb05a166f3aa17ef7aeeb5ac814", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": true, - "resource": { - "id": "subnet-065649d1429d4d9f7", - "type": "AWS::EC2::Subnet", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-065649d1429d4d9f7", - "configurationItemStatus": "OK", - "resourceId": "subnet-065649d1429d4d9f7", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.2.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-065649d1429d4d9f7\",\"vpcId\":\"vpc-089b1758d1067db7a\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"aws:cloudformation:stack-name\",\"value\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"},{\"key\":\"aws:cloudformation:logical-id\",\"value\":\"PrivateSubnet2\"},{\"key\":\"aws:cloudformation:stack-id\",\"value\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7\",\"outpostArn\":null}", - "title": "subnet-065649d1429d4d9f7", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-0d850673eac288a58\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-078dc858fdb30c749\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-089b1758d1067db7a\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-089b1758d1067db7a", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-065649d1429d4d9f7", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.2.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-12T01:44:14.358Z", - "tags": "{\"aws:cloudformation:logical-id\":\"PrivateSubnet2\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0/53d0c1d0-2e67-11e9-b26c-1298ca2ea00e\",\"aws:cloudformation:stack-name\":\"deepracer-vpc-XXXXXXXXXXXX-20190212014133-e1086ca3-f5f8-415c-9721-f95172c853d0\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549935854358", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet", - "private": true - } - }, - "position": { - "x": 503.4384079654382, - "y": 982.9716313018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "871398f6d0f84b58d90c4d8dc1587903", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-a339e8d9", - "label": "vpc-a339e8d9 - $0", - "plainLabel": "vpc-a339e8d9", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "871398f6d0f84b58d90c4d8dc1587903", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-a339e8d9", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-c74436bc\",\"state\":\"available\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-1b47e577\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}]}", - "title": "vpc-a339e8d9", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0048b7e220199d36f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-00654cb6f20ece612\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-008849da53b376106\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-01cf31026da2f5a21\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-02a43749b30f8d2f9\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-031bb0d235021b3ef\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0686b4271c0933ab4\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06a8f99704a6f74c3\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-088270c8646c5c8eb\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-08ed4f39bf223e98e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0915ccfa7c7cb8ad5\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-09eaa5ca7f098d924\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a39107e57d64dcea\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0aacdab0229ee8b2f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0d02c0a9ce29d548e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0dd2e5e2213284363\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0e113a60da0c82566\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0ec7ab49fa1ed2b3a\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0093d277d1dae45d4\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-01ecdae39166770f9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e5da7526bb9fac9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0dd1372db8405ae34\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-32787c4a\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-579cc028\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-03f8e881bb0fcf143\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0569e5d8828fc6838\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-09bebd5044b4e6cad\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b476b05ce8270aad\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b6b7584e08296b54\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0f4be1627a7bad2f0\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-9c151cd1\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-24c94878\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-2bceb124\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-4bb87075\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-7a194d30\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-b228a89c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-d71792b0\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a339e8d9", - "instanceTenancy": "default", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-04-21T16:42:57.401Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1587487377401", - "isDefault": "true", - "dhcpOptionsId": "dopt-c74436bc", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-a339e8d9", - "type": "AWS::EC2::VPC", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:vpc/vpc-a339e8d9", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 577.7291030471665, - "y": 1238.7216378018848 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1a-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1a", - "label": "us-east-1a - $0", - "plainLabel": "us-east-1a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 577.7291030471665, - "y": 1173.471636301885 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1a-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "e308514c32f2a4e6a8692695ccf67a2b", - "title": "subnet-d71792b0", - "label": "subnet-d7179...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "e308514c32f2a4e6a8692695ccf67a2b", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-d71792b0", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Web Server Subnet Public\",\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-d71792b0", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-d71792b0", - "configurationItemStatus": "OK", - "resourceId": "subnet-d71792b0", - "configuration": "{\"availabilityZone\":\"us-east-1a\",\"availabilityZoneId\":\"use1-az1\",\"availableIpAddressCount\":4089,\"cidrBlock\":\"172.31.0.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-d71792b0\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"},{\"key\":\"Name\",\"value\":\"Web Server Subnet Public\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-d71792b0\",\"outpostArn\":null}", - "title": "subnet-d71792b0", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1a", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-01cf31026da2f5a21\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0e113a60da0c82566\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0093d277d1dae45d4\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-d71792b0", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-27T19:58:53.586Z", - "tags": "{\"Name\":\"Web Server Subnet Public\",\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1585339133586", - "availableIpAddressCount": "4089", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 577.7291030471665, - "y": 1173.471636301885 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1c-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1c", - "label": "us-east-1c - $0", - "plainLabel": "us-east-1c", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 700.7291060471666, - "y": 1194.9228625578498 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1c-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "fe5811bbe04b0afd6cac46012e0346c9", - "title": "subnet-7a194d30", - "label": "subnet-7a194...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "fe5811bbe04b0afd6cac46012e0346c9", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-7a194d30", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-7a194d30", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-7a194d30", - "configurationItemStatus": "OK", - "resourceId": "subnet-7a194d30", - "configuration": "{\"availabilityZone\":\"us-east-1c\",\"availabilityZoneId\":\"use1-az4\",\"availableIpAddressCount\":4083,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-7a194d30\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-7a194d30\",\"outpostArn\":null}", - "title": "subnet-7a194d30", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1c", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0048b7e220199d36f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-02a43749b30f8d2f9\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-031bb0d235021b3ef\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06a8f99704a6f74c3\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-088270c8646c5c8eb\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a39107e57d64dcea\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0aacdab0229ee8b2f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0d02c0a9ce29d548e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-01ecdae39166770f9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0dd1372db8405ae34\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-7a194d30", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-27T22:00:18.062Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1585346418062", - "availableIpAddressCount": "4083", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 700.7291060471666, - "y": 1194.9228625578498 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1f-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1f", - "label": "us-east-1f - $0", - "plainLabel": "us-east-1f", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 823.7291090471666, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1f-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "42f1214938fbca57259f0ef492946880", - "title": "subnet-2bceb124", - "label": "subnet-2bceb...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "42f1214938fbca57259f0ef492946880", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-2bceb124", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-2bceb124", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-2bceb124", - "configurationItemStatus": "OK", - "resourceId": "subnet-2bceb124", - "configuration": "{\"availabilityZone\":\"us-east-1f\",\"availabilityZoneId\":\"use1-az5\",\"availableIpAddressCount\":4089,\"cidrBlock\":\"172.31.64.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-2bceb124\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-2bceb124\",\"outpostArn\":null}", - "title": "subnet-2bceb124", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1f", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-08ed4f39bf223e98e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0915ccfa7c7cb8ad5\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-2bceb124", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.64.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-23T21:38:39.418Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1584999519418", - "availableIpAddressCount": "4089", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 823.7291090471666, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1e-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1e", - "label": "us-east-1e - $0", - "plainLabel": "us-east-1e", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 331.72909704716653, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1e-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "33f29090e2a2ae66a11c91c24726a50f", - "title": "subnet-4bb87075", - "label": "subnet-4bb87...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "33f29090e2a2ae66a11c91c24726a50f", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-4bb87075", - "type": "AWS::EC2::Subnet", - "tags": "{}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4bb87075", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-4bb87075", - "configurationItemStatus": "OK", - "resourceId": "subnet-4bb87075", - "configuration": "{\"availabilityZone\":\"us-east-1e\",\"availabilityZoneId\":\"use1-az3\",\"availableIpAddressCount\":4090,\"cidrBlock\":\"172.31.48.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-4bb87075\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4bb87075\",\"outpostArn\":null}", - "title": "subnet-4bb87075", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1e", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0dd2e5e2213284363\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-4bb87075", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.48.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-02-17T23:22:44.409Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1581981764409", - "availableIpAddressCount": "4090", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 331.72909704716653, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1b-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1b", - "label": "us-east-1b - $0", - "plainLabel": "us-east-1b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 454.7291000471666, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1b-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "d374567401cf777cbe8b0e7aba5b39b4", - "title": "subnet-b228a89c", - "label": "subnet-b228a...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "d374567401cf777cbe8b0e7aba5b39b4", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-b228a89c", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-b228a89c", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-b228a89c", - "configurationItemStatus": "OK", - "resourceId": "subnet-b228a89c", - "configuration": "{\"availabilityZone\":\"us-east-1b\",\"availabilityZoneId\":\"use1-az2\",\"availableIpAddressCount\":4087,\"cidrBlock\":\"172.31.80.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-b228a89c\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-b228a89c\",\"outpostArn\":null}", - "title": "subnet-b228a89c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1b", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-00654cb6f20ece612\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-008849da53b376106\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-09eaa5ca7f098d924\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0ec7ab49fa1ed2b3a\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e5da7526bb9fac9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-b228a89c", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.80.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-04-21T16:42:57.500Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1587487377500", - "availableIpAddressCount": "4087", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 454.7291000471666, - "y": 1195.4645712369784 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-east-1d-871398f6d0f84b58d90c4d8dc1587903", - "parent": "871398f6d0f84b58d90c4d8dc1587903", - "level": 3, - "title": "us-east-1d", - "label": "us-east-1d - $0", - "plainLabel": "us-east-1d", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 577.7291030471664, - "y": 1303.9716393018846 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-east-1d-871398f6d0f84b58d90c4d8dc1587903", - "level": 4, - "id": "efc6ffd2379368d2e41d3e3847cbc240", - "title": "subnet-24c94878", - "label": "subnet-24c94...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(206, 8, 123, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "efc6ffd2379368d2e41d3e3847cbc240", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-24c94878", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-24c94878", - "region": "us-east-1", - "state": "\"available\"", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-24c94878", - "configurationItemStatus": "OK", - "resourceId": "subnet-24c94878", - "configuration": "{\"availabilityZone\":\"us-east-1d\",\"availabilityZoneId\":\"use1-az6\",\"availableIpAddressCount\":4090,\"cidrBlock\":\"172.31.32.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-24c94878\",\"vpcId\":\"vpc-a339e8d9\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-24c94878\",\"outpostArn\":null}", - "title": "subnet-24c94878", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-east-1d", - "loggedInURL": "https://us-east-1.console.aws.amazon.com/vpc/v2/home?region=us-east-1#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-7ee9d104\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0686b4271c0933ab4\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-a339e8d9\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-east-1#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-a339e8d9", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-east-1:XXXXXXXXXXXX:subnet/subnet-24c94878", - "awsRegion": "us-east-1", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.32.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-27T20:03:44.549Z", - "tags": "{\"kubernetes.io/cluster/test\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1585339424549", - "availableIpAddressCount": "4090", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 577.7291030471664, - "y": 1303.9716393018846 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-west-2-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-west-2", - "label": "us-west-2 - $0", - "plainLabel": "us-west-2", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Region_light-bg.1ea0f82f.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 621.3399810149429, - "y": -12.441566833553708 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "54e6691a3f1cbb50e74114e125b4dd0f", - "parent": "us-west-2-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-0436f17c", - "label": "vpc-0436f17c - $0", - "plainLabel": "vpc-0436f17c", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "54e6691a3f1cbb50e74114e125b4dd0f", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-0436f17c", - "configuration": "{\"cidrBlock\":\"172.31.0.0/16\",\"dhcpOptionsId\":\"dopt-f10df189\",\"state\":\"available\",\"vpcId\":\"vpc-0436f17c\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-f00e9c9a\",\"cidrBlock\":\"172.31.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":true,\"tags\":[{\"key\":\"kubernetes.io/cluster/test-cluster\",\"value\":\"shared\"}]}", - "title": "vpc-0436f17c", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-9e045ae6\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-00402a6a0fae9b36f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06529ca40fcdca47d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06a738f0f9802cd42\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a75bfae7d565b764\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0ff73f519f83350dd\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e55a3b2c95f8b48\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08f38e030aa2c138a\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0d0c4ffe6ef7ce611\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-57664e31\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-74ff5f0f\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-00d58ad201fec6ee6\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-033bcd747558c460c\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-05b7605161d077414\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-07188a010672c600a\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-07ed9da498330cefa\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0958146465297af23\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-a4bd21d7\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-dde0c387\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-e485f7af\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-e8510191\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-0436f17c", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0436f17c", - "instanceTenancy": "default", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2020-04-22T06:33:05.492Z", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1587537185492", - "isDefault": "true", - "dhcpOptionsId": "dopt-f10df189", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-0436f17c", - "type": "AWS::EC2::VPC", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0436f17c", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 1008.8399915149428, - "y": 95.52464187097954 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-west-2b-54e6691a3f1cbb50e74114e125b4dd0f", - "parent": "54e6691a3f1cbb50e74114e125b4dd0f", - "level": 3, - "title": "us-west-2b", - "label": "us-west-2b - $0", - "plainLabel": "us-west-2b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 947.3399900149428, - "y": 160.77464337097953 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2b-54e6691a3f1cbb50e74114e125b4dd0f", - "level": 4, - "id": "479ec2ec88f5c0e82951186fb791e6df", - "title": "subnet-e485f7af", - "label": "subnet-e485f...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "479ec2ec88f5c0e82951186fb791e6df", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-e485f7af", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e485f7af", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-e485f7af", - "configurationItemStatus": "OK", - "resourceId": "subnet-e485f7af", - "configuration": "{\"availabilityZone\":\"us-west-2b\",\"availabilityZoneId\":\"usw2-az2\",\"availableIpAddressCount\":4087,\"cidrBlock\":\"172.31.32.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-e485f7af\",\"vpcId\":\"vpc-0436f17c\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test-cluster\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e485f7af\",\"outpostArn\":null}", - "title": "subnet-e485f7af", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-9e045ae6\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-00402a6a0fae9b36f\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06a738f0f9802cd42\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a75bfae7d565b764\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0ff73f519f83350dd\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08e55a3b2c95f8b48\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-08f38e030aa2c138a\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-0d0c4ffe6ef7ce611\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0436f17c\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0436f17c", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e485f7af", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.32.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-04-22T06:33:05.339Z", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1587537185339", - "availableIpAddressCount": "4087", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 947.3399900149428, - "y": 160.77464337097953 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-west-2c-54e6691a3f1cbb50e74114e125b4dd0f", - "parent": "54e6691a3f1cbb50e74114e125b4dd0f", - "level": 3, - "title": "us-west-2c", - "label": "us-west-2c - $0", - "plainLabel": "us-west-2c", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1070.3399930149428, - "y": 160.77464337097953 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2c-54e6691a3f1cbb50e74114e125b4dd0f", - "level": 4, - "id": "01769133a430baff94c33861dc17de2a", - "title": "subnet-dde0c387", - "label": "subnet-dde0c...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "01769133a430baff94c33861dc17de2a", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-dde0c387", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-dde0c387", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-dde0c387", - "configurationItemStatus": "OK", - "resourceId": "subnet-dde0c387", - "configuration": "{\"availabilityZone\":\"us-west-2c\",\"availabilityZoneId\":\"usw2-az3\",\"availableIpAddressCount\":4090,\"cidrBlock\":\"172.31.0.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-dde0c387\",\"vpcId\":\"vpc-0436f17c\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test-cluster\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-dde0c387\",\"outpostArn\":null}", - "title": "subnet-dde0c387", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2c", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-9e045ae6\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06529ca40fcdca47d\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0436f17c\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0436f17c", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-dde0c387", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.0.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-03T23:57:15.080Z", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1583279835080", - "availableIpAddressCount": "4090", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 1070.3399930149428, - "y": 160.77464337097953 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-west-2a-54e6691a3f1cbb50e74114e125b4dd0f", - "parent": "54e6691a3f1cbb50e74114e125b4dd0f", - "level": 3, - "title": "us-west-2a", - "label": "us-west-2a - $0", - "plainLabel": "us-west-2a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 947.4694026333603, - "y": 30.274640370979554 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2a-54e6691a3f1cbb50e74114e125b4dd0f", - "level": 4, - "id": "9dd394530e3b41084a97e0096598fb35", - "title": "subnet-e8510191", - "label": "subnet-e8510...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "9dd394530e3b41084a97e0096598fb35", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-e8510191", - "type": "AWS::EC2::Subnet", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e8510191", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-e8510191", - "configurationItemStatus": "OK", - "resourceId": "subnet-e8510191", - "configuration": "{\"availabilityZone\":\"us-west-2a\",\"availabilityZoneId\":\"usw2-az1\",\"availableIpAddressCount\":4091,\"cidrBlock\":\"172.31.16.0/20\",\"defaultForAz\":true,\"mapPublicIpOnLaunch\":true,\"state\":\"available\",\"subnetId\":\"subnet-e8510191\",\"vpcId\":\"vpc-0436f17c\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"kubernetes.io/cluster/test-cluster\",\"value\":\"shared\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e8510191\",\"outpostArn\":null}", - "title": "subnet-e8510191", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2a", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-9e045ae6\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0436f17c\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0436f17c", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-e8510191", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.31.16.0/20", - "version": "1.3", - "configurationItemCaptureTime": "2020-03-12T18:32:53.527Z", - "tags": "{\"kubernetes.io/cluster/test-cluster\":\"shared\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1584037973527", - "availableIpAddressCount": "4091", - "mapPublicIpOnLaunch": "true", - "defaultForAz": "true", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 947.4694026333603, - "y": 30.27464037097955 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "f571d20f02350ae3471bafc28567ba2a", - "parent": "us-west-2-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-0e8cfb1dcab175381", - "label": "vpc-0e8cfb1dcab175381 - $0", - "plainLabel": "vpc-0e8cfb1dcab175381", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "f571d20f02350ae3471bafc28567ba2a", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-0e8cfb1dcab175381", - "configuration": "{\"cidrBlock\":\"10.0.0.0/16\",\"dhcpOptionsId\":\"dopt-f10df189\",\"state\":\"available\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-02c9ea2626b9b530b\",\"cidrBlock\":\"10.0.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"Name\",\"value\":\"vpc-uw2-prod\"}]}", - "title": "vpc-0e8cfb1dcab175381", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0eeae2ed2b82f16c8\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::InternetGateway\",\"resourceId\":\"igw-079c6a7ab9cc4cf0e\",\"relationshipName\":\"Is attached to InternetGateway\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0a1879250ce587625\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0c827091e7bc76a98\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0138863ada011506e\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0a5a16ee02c86dd10\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b7264eb54d520368\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0e5738ce6a7fc20c8\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00ccaf49a0030245c\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-06270999ec0c0ce07\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0b31ab40f28209404\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c482e6f0699e7a23\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0f1dae813aa044769\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0fda0e0a4439f7832\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0e8cfb1dcab175381", - "instanceTenancy": "default", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T18:41:06.361Z", - "tags": "{\"Name\":\"vpc-uw2-prod\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575916866361", - "isDefault": "false", - "dhcpOptionsId": "dopt-f10df189", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-0e8cfb1dcab175381", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"vpc-uw2-prod\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0e8cfb1dcab175381", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 235.33997001494288, - "y": -75.12552164477562 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-west-2b-f571d20f02350ae3471bafc28567ba2a", - "parent": "f571d20f02350ae3471bafc28567ba2a", - "level": 3, - "title": "us-west-2b", - "label": "us-west-2b - $0", - "plainLabel": "us-west-2b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 298.3399710149429, - "y": -49.375521144775625 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2b-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "c127601b479d2c4aa5b75cb53cfe46d1", - "title": "subnet-0f1dae813aa044769", - "label": "subnet-0f1da...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "c127601b479d2c4aa5b75cb53cfe46d1", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0f1dae813aa044769", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PrivSub-B\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0f1dae813aa044769", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0f1dae813aa044769", - "configurationItemStatus": "OK", - "resourceId": "subnet-0f1dae813aa044769", - "configuration": "{\"availabilityZone\":\"us-west-2b\",\"availabilityZoneId\":\"usw2-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.2.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0f1dae813aa044769\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PrivSub-B\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0f1dae813aa044769\",\"outpostArn\":null}", - "title": "subnet-0f1dae813aa044769", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0f1dae813aa044769", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.2.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T18:32:51.910Z", - "tags": "{\"Name\":\"Atlas-PrivSub-B\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575916371910", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 298.3399710149429, - "y": -119.87552214477562 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-west-2b-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "779d86e304d0c3ae4d1a8bb5d60fe614", - "title": "subnet-0fda0e0a4439f7832", - "label": "subnet-0fda0...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "779d86e304d0c3ae4d1a8bb5d60fe614", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0fda0e0a4439f7832", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PrivDBSub-B\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0fda0e0a4439f7832", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0fda0e0a4439f7832", - "configurationItemStatus": "OK", - "resourceId": "subnet-0fda0e0a4439f7832", - "configuration": "{\"availabilityZone\":\"us-west-2b\",\"availabilityZoneId\":\"usw2-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.5.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0fda0e0a4439f7832\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PrivDBSub-B\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0fda0e0a4439f7832\",\"outpostArn\":null}", - "title": "subnet-0fda0e0a4439f7832", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0fda0e0a4439f7832", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.5.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T15:37:19.133Z", - "tags": "{\"Name\":\"Atlas-PrivDBSub-B\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575905839133", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 298.3399710149429, - "y": -49.37552114477561 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-west-2b-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "ee2213af3ad789f530abe56278b7850c", - "title": "subnet-00ccaf49a0030245c", - "label": "subnet-00cca...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "ee2213af3ad789f530abe56278b7850c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-00ccaf49a0030245c", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PubSub-B\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-00ccaf49a0030245c", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-00ccaf49a0030245c", - "configurationItemStatus": "OK", - "resourceId": "subnet-00ccaf49a0030245c", - "configuration": "{\"availabilityZone\":\"us-west-2b\",\"availabilityZoneId\":\"usw2-az2\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.3.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-00ccaf49a0030245c\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PubSub-B\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-00ccaf49a0030245c\",\"outpostArn\":null}", - "title": "subnet-00ccaf49a0030245c", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0c827091e7bc76a98\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-00ccaf49a0030245c", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.3.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T18:41:06.514Z", - "tags": "{\"Name\":\"Atlas-PubSub-B\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575916866514", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 298.3399710149429, - "y": 21.124479855224383 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-west-2a-f571d20f02350ae3471bafc28567ba2a", - "parent": "f571d20f02350ae3471bafc28567ba2a", - "level": 3, - "title": "us-west-2a", - "label": "us-west-2a - $0", - "plainLabel": "us-west-2a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 235.33997001494288, - "y": 151.6244828552244 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2a-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "d9613d71e20930267fc79a56b9850abc", - "title": "subnet-0c482e6f0699e7a23", - "label": "subnet-0c482...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "d9613d71e20930267fc79a56b9850abc", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0c482e6f0699e7a23", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PubSub-A\",\"Project\":\"Capstone\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0c482e6f0699e7a23", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0c482e6f0699e7a23", - "configurationItemStatus": "OK", - "resourceId": "subnet-0c482e6f0699e7a23", - "configuration": "{\"availabilityZone\":\"us-west-2a\",\"availabilityZoneId\":\"usw2-az1\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.0.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0c482e6f0699e7a23\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PubSub-A\"},{\"key\":\"Project\",\"value\":\"Capstone\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0c482e6f0699e7a23\",\"outpostArn\":null}", - "title": "subnet-0c482e6f0699e7a23", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2a", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0eeae2ed2b82f16c8\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0c827091e7bc76a98\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0c482e6f0699e7a23", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T18:32:51.910Z", - "tags": "{\"Name\":\"Atlas-PubSub-A\",\"Project\":\"Capstone\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575916371910", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 172.33996901494288, - "y": 151.6244828552244 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-west-2a-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "bbff4156e3c8d7e1eafd7d6bc65a025c", - "title": "subnet-06270999ec0c0ce07", - "label": "subnet-06270...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "bbff4156e3c8d7e1eafd7d6bc65a025c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-06270999ec0c0ce07", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PrivDBSub-A\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-06270999ec0c0ce07", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-06270999ec0c0ce07", - "configurationItemStatus": "OK", - "resourceId": "subnet-06270999ec0c0ce07", - "configuration": "{\"availabilityZone\":\"us-west-2a\",\"availabilityZoneId\":\"usw2-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.4.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-06270999ec0c0ce07\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PrivDBSub-A\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-06270999ec0c0ce07\",\"outpostArn\":null}", - "title": "subnet-06270999ec0c0ce07", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2a", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-06270999ec0c0ce07", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.4.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T15:36:52.566Z", - "tags": "{\"Name\":\"Atlas-PrivDBSub-A\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575905812566", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 235.33997001494285, - "y": 151.6244828552244 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "us-west-2a-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "id": "4d665a73bd956c892dbce709f505b386", - "title": "subnet-0b31ab40f28209404", - "label": "subnet-0b31a...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "4d665a73bd956c892dbce709f505b386", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0b31ab40f28209404", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"Atlas-PrivSub-A\",\"Project\":\"Capstone\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0b31ab40f28209404", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0b31ab40f28209404", - "configurationItemStatus": "OK", - "resourceId": "subnet-0b31ab40f28209404", - "configuration": "{\"availabilityZone\":\"us-west-2a\",\"availabilityZoneId\":\"usw2-az1\",\"availableIpAddressCount\":251,\"cidrBlock\":\"10.0.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0b31ab40f28209404\",\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"Atlas-PrivSub-A\"},{\"key\":\"Project\",\"value\":\"Capstone\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0b31ab40f28209404\",\"outpostArn\":null}", - "title": "subnet-0b31ab40f28209404", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2a", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-08b9a30d48943de21\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0b31ab40f28209404", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-12-09T18:32:51.910Z", - "tags": "{\"Name\":\"Atlas-PrivSub-A\",\"Project\":\"Capstone\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1575916371910", - "availableIpAddressCount": "251", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 298.3399710149429, - "y": 151.6244828552244 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "2c6a2bb2d041c002bbbdc43d3443ba98", - "parent": "us-west-2-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-0e5b840cdea4083c4", - "label": "vpc-0e5b840cdea4083c4 - $0", - "plainLabel": "vpc-0e5b840cdea4083c4", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "2c6a2bb2d041c002bbbdc43d3443ba98", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-0e5b840cdea4083c4", - "configuration": "{\"cidrBlock\":\"10.0.0.0/24\",\"dhcpOptionsId\":\"dopt-f10df189\",\"state\":\"available\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-0d7d22babc8421baf\",\"cidrBlock\":\"10.0.0.0/24\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"Name\",\"value\":\"test-vpc\"}]}", - "title": "vpc-0e5b840cdea4083c4", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-01b18dbec4f3bd719\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0701b03dbb9f56362\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-020dcec81e2a6ffa9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0dcb4153b2ee5c431\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-01aa7066a59ed75b3\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-09c266559957b0d41\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02eda0882cabaa9c8\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-0e5b840cdea4083c4", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0e5b840cdea4083c4", - "instanceTenancy": "default", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-08-30T06:32:53.435Z", - "tags": "{\"Name\":\"test-vpc\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1567146773435", - "isDefault": "false", - "dhcpOptionsId": "dopt-f10df189", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-0e5b840cdea4083c4", - "type": "AWS::EC2::VPC", - "tags": "{\"Name\":\"test-vpc\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-0e5b840cdea4083c4", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 618.5899800149429, - "y": -30.007615522331733 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-west-2b-2c6a2bb2d041c002bbbdc43d3443ba98", - "parent": "2c6a2bb2d041c002bbbdc43d3443ba98", - "level": 3, - "title": "us-west-2b", - "label": "us-west-2b - $0", - "plainLabel": "us-west-2b", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 714.3399830149428, - "y": -34.25761602233173 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2b-2c6a2bb2d041c002bbbdc43d3443ba98", - "level": 4, - "id": "4f3d76df5e6a35f9b4d5d61077310443", - "title": "subnet-02eda0882cabaa9c8", - "label": "subnet-02eda0882cabaa9c8 - $0", - "shape": "image", - "type": "subnet", - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#AAB7B8", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "4f3d76df5e6a35f9b4d5d61077310443", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg-collapsed.fb392d44.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-02eda0882cabaa9c8", - "type": "AWS::EC2::Subnet", - "tags": "{\"Name\":\"test-subnet\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-02eda0882cabaa9c8", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-02eda0882cabaa9c8", - "configurationItemStatus": "OK", - "resourceId": "subnet-02eda0882cabaa9c8", - "configuration": "{\"availabilityZone\":\"us-west-2b\",\"availabilityZoneId\":\"usw2-az2\",\"availableIpAddressCount\":250,\"cidrBlock\":\"10.0.0.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"Name\",\"value\":\"test-subnet\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-02eda0882cabaa9c8\",\"outpostArn\":null}", - "title": "subnet-02eda0882cabaa9c8", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-01b18dbec4f3bd719\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0701b03dbb9f56362\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-020dcec81e2a6ffa9\",\"relationshipName\":\"Contains Instance\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e5b840cdea4083c4\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-0e5b840cdea4083c4", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-02eda0882cabaa9c8", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "10.0.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-08-30T06:32:53.309Z", - "tags": "{\"Name\":\"test-subnet\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1567146773309", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - }, - "plainLabel": "subnet-02eda0882cabaa9c8", - "children": true, - "aZColour": "#00A1C9", - "subnetColour": "#248814" - }, - "position": { - "x": 714.3399830149428, - "y": -34.25761602233173 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "subnet removeAll" - }, - { - "data": { - "id": "64e2ed520b533cf2c38e8d2feea2b456", - "parent": "us-west-2-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "vpc-09cab39e5f86ca998", - "label": "vpc-09cab39e5f86ca998 - $0", - "plainLabel": "vpc-09cab39e5f86ca998", - "type": "vpc", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/VPC-collapsed.7a624451.svg", - "clickedId": "64e2ed520b533cf2c38e8d2feea2b456", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9", - "subnetColour": "#248814", - "properties": { - "configurationItemStatus": "OK", - "resourceId": "vpc-09cab39e5f86ca998", - "configuration": "{\"cidrBlock\":\"172.16.0.0/16\",\"dhcpOptionsId\":\"dopt-f10df189\",\"state\":\"available\",\"vpcId\":\"vpc-09cab39e5f86ca998\",\"ownerId\":\"XXXXXXXXXXXX\",\"instanceTenancy\":\"default\",\"ipv6CidrBlockAssociationSet\":[],\"cidrBlockAssociationSet\":[{\"associationId\":\"vpc-cidr-assoc-096d1a89c3f1b6b85\",\"cidrBlock\":\"172.16.0.0/16\",\"cidrBlockState\":{\"state\":\"associated\",\"statusMessage\":null}}],\"isDefault\":false,\"tags\":[{\"key\":\"AWSServiceAccount\",\"value\":\"180699916525\"}]}", - "title": "vpc-09cab39e5f86ca998", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-032f23ff9e00ff103\",\"relationshipName\":\"Contains NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-03edd5ad54742bca1\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06af90deb3f93c184\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07c98c5900f015d4c\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-094b36221de898a8e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a7f699e6e67fad45\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0090c46493a18a8f2\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0d70402516c469b33\",\"relationshipName\":\"Contains RouteTable\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-013dd2119b18c58b7\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-076aba0745932f339\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-0b2ecd2def673c1a3\",\"relationshipName\":\"Contains SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-028ed96147d279d4b\",\"relationshipName\":\"Contains Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0566c601f4938d55f\",\"relationshipName\":\"Contains Subnet\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "relatedEvents": "[]", - "vpcId": "vpc-09cab39e5f86ca998", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-09cab39e5f86ca998", - "instanceTenancy": "default", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.16.0.0/16", - "version": "1.3", - "configurationItemCaptureTime": "2019-07-19T20:32:22.320Z", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1563568342320", - "isDefault": "false", - "dhcpOptionsId": "dopt-f10df189", - "resourceType": "AWS::EC2::VPC" - }, - "resource": { - "id": "vpc-09cab39e5f86ca998", - "type": "AWS::EC2::VPC", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:vpc/vpc-09cab39e5f86ca998", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#vpcs:sort=VpcId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#vpcs:sort=VpcId", - "accountId": "XXXXXXXXXXXX" - } - }, - "position": { - "x": 570.0976796442478, - "y": 276.9923924776682 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "vpc removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-west-2a-64e2ed520b533cf2c38e8d2feea2b456", - "parent": "64e2ed520b533cf2c38e8d2feea2b456", - "level": 3, - "title": "us-west-2a", - "label": "us-west-2a - $0", - "plainLabel": "us-west-2a", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 631.5976811442478, - "y": 276.9923924776682 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2a-64e2ed520b533cf2c38e8d2feea2b456", - "level": 4, - "id": "e998d4481b9cac2fc5b40f483c3c472c", - "title": "subnet-028ed96147d279d4b", - "label": "subnet-028ed...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "e998d4481b9cac2fc5b40f483c3c472c", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-028ed96147d279d4b", - "type": "AWS::EC2::Subnet", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-028ed96147d279d4b", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-028ed96147d279d4b", - "configurationItemStatus": "OK", - "resourceId": "subnet-028ed96147d279d4b", - "configuration": "{\"availabilityZone\":\"us-west-2a\",\"availabilityZoneId\":\"usw2-az1\",\"availableIpAddressCount\":250,\"cidrBlock\":\"172.16.0.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-028ed96147d279d4b\",\"vpcId\":\"vpc-09cab39e5f86ca998\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"AWSServiceAccount\",\"value\":\"180699916525\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-028ed96147d279d4b\",\"outpostArn\":null}", - "title": "subnet-028ed96147d279d4b", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2a", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-032f23ff9e00ff103\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-06af90deb3f93c184\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0d70402516c469b33\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-09cab39e5f86ca998\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-09cab39e5f86ca998", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-028ed96147d279d4b", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.16.0.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-02-07T22:33:02.023Z", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1549578782023", - "availableIpAddressCount": "250", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 631.5976811442478, - "y": 276.9923924776682 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "us-west-2c-64e2ed520b533cf2c38e8d2feea2b456", - "parent": "64e2ed520b533cf2c38e8d2feea2b456", - "level": 3, - "title": "us-west-2c", - "label": "us-west-2c - $0", - "plainLabel": "us-west-2c", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 508.59767814424777, - "y": 276.9923924776682 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "parent": "us-west-2c-64e2ed520b533cf2c38e8d2feea2b456", - "level": 4, - "id": "8066cb2dd56d54e5b663bdb4c96bf6f1", - "title": "subnet-0566c601f4938d55f", - "label": "subnet-0566c...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "8066cb2dd56d54e5b663bdb4c96bf6f1", - "state": { - "status": "status-available", - "text": "available", - "color": "#1D8102" - }, - "image": "/static/media/VPC-subnet-private_light-bg.505939d4.svg", - "cost": 0, - "private": false, - "resource": { - "id": "subnet-0566c601f4938d55f", - "type": "AWS::EC2::Subnet", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0566c601f4938d55f", - "region": "us-west-2", - "state": "\"available\"", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-0566c601f4938d55f", - "configurationItemStatus": "OK", - "resourceId": "subnet-0566c601f4938d55f", - "configuration": "{\"availabilityZone\":\"us-west-2c\",\"availabilityZoneId\":\"usw2-az3\",\"availableIpAddressCount\":247,\"cidrBlock\":\"172.16.1.0/24\",\"defaultForAz\":false,\"mapPublicIpOnLaunch\":false,\"state\":\"available\",\"subnetId\":\"subnet-0566c601f4938d55f\",\"vpcId\":\"vpc-09cab39e5f86ca998\",\"ownerId\":\"XXXXXXXXXXXX\",\"assignIpv6AddressOnCreation\":false,\"ipv6CidrBlockAssociationSet\":[],\"tags\":[{\"key\":\"AWSServiceAccount\",\"value\":\"180699916525\"}],\"subnetArn\":\"arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0566c601f4938d55f\",\"outpostArn\":null}", - "title": "subnet-0566c601f4938d55f", - "assignIpv6AddressOnCreation": "false", - "availabilityZone": "us-west-2c", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#subnets:sort=SubnetId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkAcl\",\"resourceId\":\"acl-032f23ff9e00ff103\",\"relationshipName\":\"Is attached to NetworkAcl\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-03edd5ad54742bca1\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-07c98c5900f015d4c\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-094b36221de898a8e\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0a7f699e6e67fad45\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::RouteTable\",\"resourceId\":\"rtb-0d70402516c469b33\",\"relationshipName\":\"Is contained in RouteTable\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-09cab39e5f86ca998\",\"relationshipName\":\"Is contained in Vpc\"}]", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#subnets:sort=SubnetId", - "relatedEvents": "[]", - "vpcId": "vpc-09cab39e5f86ca998", - "state": "\"available\"", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:subnet/subnet-0566c601f4938d55f", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "cidrBlock": "172.16.1.0/24", - "version": "1.3", - "configurationItemCaptureTime": "2019-07-19T20:32:22.397Z", - "tags": "{\"AWSServiceAccount\":\"180699916525\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1563568342397", - "availableIpAddressCount": "247", - "mapPublicIpOnLaunch": "false", - "defaultForAz": "false", - "resourceType": "AWS::EC2::Subnet" - } - }, - "position": { - "x": 508.5976781442478, - "y": 276.9923924776682 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "global-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "global", - "label": "global - $0", - "plainLabel": "global", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Region_light-bg.1ea0f82f.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1283.3399990149428, - "y": -40.768457120588295 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "TAG-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "TAG", - "label": "2x TAG - $0", - "plainLabel": "TAG", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 1283.3399990149428, - "y": -40.768457120588295 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "2efcbf917e6a034846bd9546de3f0ffc", - "title": "Name : Atlas-PrivSub-B", - "label": "Name : Atlas...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "2efcbf917e6a034846bd9546de3f0ffc", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "Name", - "value": "Atlas-PrivSub-B", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "Name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-05-01T00:01:52.538Z", - "title": "Name : Atlas-PrivSub-B", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "Atlas-PrivSub-B" - } - }, - "position": { - "x": 1283.3399990149428, - "y": -117.92924786179286 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Multiple Availability Zones-f571d20f02350ae3471bafc28567ba2a", - "parent": "f571d20f02350ae3471bafc28567ba2a", - "level": 3, - "title": "Multiple Availability Zones", - "label": "Multiple Availability Zones - $0", - "plainLabel": "Multiple Availability Zones", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 268.3399700149428, - "y": -280.3755261447756 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkAcl-Multiple Availability Zones-f571d20f02350ae3471bafc28567ba2a", - "parent": "Multiple Availability Zones-f571d20f02350ae3471bafc28567ba2a", - "level": 4, - "title": "NetworkAcl", - "label": "1x NetworkAcl - $0", - "plainLabel": "NetworkAcl", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 268.3399700149428, - "y": -280.3755261447756 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-f571d20f02350ae3471bafc28567ba2a", - "level": 5, - "id": "ae1147ee7ae675ab12405984d746450b", - "title": "acl-08b9a30d48943de21", - "label": "acl-08b9a30d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "ae1147ee7ae675ab12405984d746450b", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "private": false, - "resource": { - "id": "acl-08b9a30d48943de21", - "type": "AWS::EC2::NetworkAcl", - "tags": "{}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-acl/acl-08b9a30d48943de21", - "region": "us-west-2", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-093efe4ae7d7d1b36\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0c482e6f0699e7a23\"},{\"networkAclAssociationId\":\"aclassoc-0cdd2b802bc424e4d\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0b31ab40f28209404\"},{\"networkAclAssociationId\":\"aclassoc-03fff5a49695535cd\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0f1dae813aa044769\"},{\"networkAclAssociationId\":\"aclassoc-008b4e3f12e580508\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-00ccaf49a0030245c\"},{\"networkAclAssociationId\":\"aclassoc-0caa11037832a4fac\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-06270999ec0c0ce07\"},{\"networkAclAssociationId\":\"aclassoc-05bfd641c897340ad\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0fda0e0a4439f7832\"}]", - "configurationItemStatus": "OK", - "resourceId": "acl-08b9a30d48943de21", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-093efe4ae7d7d1b36\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0c482e6f0699e7a23\"},{\"networkAclAssociationId\":\"aclassoc-0cdd2b802bc424e4d\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0b31ab40f28209404\"},{\"networkAclAssociationId\":\"aclassoc-03fff5a49695535cd\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0f1dae813aa044769\"},{\"networkAclAssociationId\":\"aclassoc-008b4e3f12e580508\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-00ccaf49a0030245c\"},{\"networkAclAssociationId\":\"aclassoc-0caa11037832a4fac\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-06270999ec0c0ce07\"},{\"networkAclAssociationId\":\"aclassoc-05bfd641c897340ad\",\"networkAclId\":\"acl-08b9a30d48943de21\",\"subnetId\":\"subnet-0fda0e0a4439f7832\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-08b9a30d48943de21\",\"tags\":[],\"vpcId\":\"vpc-0e8cfb1dcab175381\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "title": "acl-08b9a30d48943de21", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#acls:sort=networkAclId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-00ccaf49a0030245c\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-06270999ec0c0ce07\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0b31ab40f28209404\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0c482e6f0699e7a23\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0f1dae813aa044769\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-0fda0e0a4439f7832\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e8cfb1dcab175381\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-05-01T00:01:51.481Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#acls:sort=networkAclId", - "relatedEvents": "[]", - "vpcId": "vpc-0e8cfb1dcab175381", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-acl/acl-08b9a30d48943de21", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "configurationItemCaptureTime": "2018-11-23T15:56:17.766Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1542988577766", - "isDefault": "true", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 268.3399700149428, - "y": -280.3755261447756 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Multiple Availability Zones-2c6a2bb2d041c002bbbdc43d3443ba98", - "parent": "2c6a2bb2d041c002bbbdc43d3443ba98", - "level": 3, - "title": "Multiple Availability Zones", - "label": "Multiple Availability Zones - $0", - "plainLabel": "Multiple Availability Zones", - "type": "availabilityZone", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/availabilityZone.e8427f72.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 511.33997701494286, - "y": 56.49238647766825 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "availabilityZone removeAll _gridParentPadding" - }, - { - "data": { - "id": "NetworkAcl-Multiple Availability Zones-2c6a2bb2d041c002bbbdc43d3443ba98", - "parent": "Multiple Availability Zones-2c6a2bb2d041c002bbbdc43d3443ba98", - "level": 4, - "title": "NetworkAcl", - "label": "1x NetworkAcl - $0", - "plainLabel": "NetworkAcl", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 511.33997701494286, - "y": 56.49238647766825 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkAcl-Multiple Availability Zones-2c6a2bb2d041c002bbbdc43d3443ba98", - "level": 5, - "id": "dfcb519792f64e31f0d181d38ab12a14", - "title": "acl-01b18dbec4f3bd719", - "label": "acl-01b18dbe...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "dfcb519792f64e31f0d181d38ab12a14", - "image": "/static/media/Amazon-VPC_Network-Access-Control-List_light-bg.dae74816.svg", - "cost": 0, - "private": false, - "resource": { - "id": "acl-01b18dbec4f3bd719", - "type": "AWS::EC2::NetworkAcl", - "tags": "{}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-acl/acl-01b18dbec4f3bd719", - "region": "us-west-2", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#acls:sort=networkAclId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#acls:sort=networkAclId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "associations": "[{\"networkAclAssociationId\":\"aclassoc-0f80bbf9fcc29ed0a\",\"networkAclId\":\"acl-01b18dbec4f3bd719\",\"subnetId\":\"subnet-02eda0882cabaa9c8\"}]", - "configurationItemStatus": "ResourceDiscovered", - "resourceId": "acl-01b18dbec4f3bd719", - "configuration": "{\"associations\":[{\"networkAclAssociationId\":\"aclassoc-0f80bbf9fcc29ed0a\",\"networkAclId\":\"acl-01b18dbec4f3bd719\",\"subnetId\":\"subnet-02eda0882cabaa9c8\"}],\"entries\":[{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":true,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"allow\",\"ruleNumber\":100},{\"cidrBlock\":\"0.0.0.0/0\",\"egress\":false,\"icmpTypeCode\":null,\"ipv6CidrBlock\":null,\"portRange\":null,\"protocol\":\"-1\",\"ruleAction\":\"deny\",\"ruleNumber\":32767}],\"isDefault\":true,\"networkAclId\":\"acl-01b18dbec4f3bd719\",\"tags\":[],\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"ownerId\":\"XXXXXXXXXXXX\"}", - "title": "acl-01b18dbec4f3bd719", - "availabilityZone": "Multiple Availability Zones", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/vpc/v2/home?region=us-west-2#acls:sort=networkAclId", - "relationships": "[{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02eda0882cabaa9c8\",\"relationshipName\":\"Is attached to Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e5b840cdea4083c4\",\"relationshipName\":\"Is contained in Vpc\"}]", - "perspectiveBirthDate": "2020-05-01T00:01:44.959Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/vpc?region=us-west-2#acls:sort=networkAclId", - "relatedEvents": "[]", - "vpcId": "vpc-0e5b840cdea4083c4", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-acl/acl-01b18dbec4f3bd719", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "configurationItemCaptureTime": "2019-08-29T21:30:27.573Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1567114227573", - "isDefault": "true", - "resourceType": "AWS::EC2::NetworkAcl" - } - }, - "position": { - "x": 511.3399770149428, - "y": 56.49238647766825 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "NetworkInterface-4f3d76df5e6a35f9b4d5d61077310443", - "parent": "4f3d76df5e6a35f9b4d5d61077310443", - "level": 5, - "title": "NetworkInterface", - "label": "1x NetworkInterface - $0", - "plainLabel": "NetworkInterface", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 714.3399830149428, - "y": 36.49238547766826 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "NetworkInterface-4f3d76df5e6a35f9b4d5d61077310443", - "level": 6, - "id": "663aa59a376e338b60d402467b4d980b", - "title": "eni-0701b03dbb9f56362", - "label": "eni-0701b03d...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "663aa59a376e338b60d402467b4d980b", - "image": "/static/media/Amazon-VPC_Elastic-Network-Interface_light-bg.fc25c799.svg", - "cost": 0, - "private": false, - "resource": { - "id": "eni-0701b03dbb9f56362", - "type": "AWS::EC2::NetworkInterface", - "tags": "{}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-interface/eni-0701b03dbb9f56362", - "region": "us-west-2", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/ec2/v2/home?region=us-west-2#NIC:sort=description", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-west-2#NIC:sort=description", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-02eda0882cabaa9c8", - "configurationItemStatus": "OK", - "resourceId": "eni-0701b03dbb9f56362", - "configuration": "{\"association\":null,\"attachment\":{\"attachTime\":\"2019-08-29T21:29:53.000Z\",\"attachmentId\":\"eni-attach-0ea05031065e898db\",\"deleteOnTermination\":true,\"deviceIndex\":0,\"instanceId\":\"i-020dcec81e2a6ffa9\",\"instanceOwnerId\":\"XXXXXXXXXXXX\",\"status\":\"attached\"},\"availabilityZone\":\"us-west-2b\",\"description\":\"Primary network interface\",\"groups\":[{\"groupName\":\"launch-wizard-1\",\"groupId\":\"sg-01aa7066a59ed75b3\"}],\"interfaceType\":\"interface\",\"ipv6Addresses\":[],\"macAddress\":\"06:9c:ec:fa:bc:e4\",\"networkInterfaceId\":\"eni-0701b03dbb9f56362\",\"outpostArn\":null,\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\",\"privateIpAddresses\":[{\"association\":null,\"primary\":true,\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\"}],\"requesterId\":null,\"requesterManaged\":false,\"sourceDestCheck\":true,\"status\":\"in-use\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"tagSet\":[],\"vpcId\":\"vpc-0e5b840cdea4083c4\"}", - "description": "Primary network interface", - "title": "eni-0701b03dbb9f56362", - "sourceDestCheck": "true", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/ec2/v2/home?region=us-west-2#NIC:sort=description", - "relationships": "[{\"resourceType\":\"AWS::EC2::Instance\",\"resourceId\":\"i-020dcec81e2a6ffa9\",\"relationshipName\":\"Is attached to Instance\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-01aa7066a59ed75b3\",\"relationshipName\":\"Is associated with SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02eda0882cabaa9c8\",\"relationshipName\":\"Is contained in Subnet\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e5b840cdea4083c4\",\"relationshipName\":\"Is contained in Vpc\"}]", - "interfaceType": "interface", - "perspectiveBirthDate": "2020-05-01T00:01:45.549Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-west-2#NIC:sort=description", - "relatedEvents": "[]", - "vpcId": "vpc-0e5b840cdea4083c4", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:network-interface/eni-0701b03dbb9f56362", - "networkInterfaceId": "eni-0701b03dbb9f56362", - "awsRegion": "us-west-2", - "requesterId": "null", - "supplementaryConfiguration": "{}", - "configurationItemMD5Hash": "", - "version": "1.3", - "requesterManaged": "false", - "configurationItemCaptureTime": "2019-08-30T06:32:54.089Z", - "privateIpAddress": "10.0.0.184", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1567146774089", - "macAddress": "06:9c:ec:fa:bc:e4", - "privateDnsName": "null", - "status": "in-use", - "resourceType": "AWS::EC2::NetworkInterface" - } - }, - "position": { - "x": 714.3399830149428, - "y": 36.49238547766826 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Instance-4f3d76df5e6a35f9b4d5d61077310443", - "parent": "4f3d76df5e6a35f9b4d5d61077310443", - "level": 5, - "title": "Instance", - "label": "1x Instance - $0", - "plainLabel": "Instance", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "image": "/static/media/Amazon-EC2_Instance_light-bg.9bb77d8e.svg", - "cost": 0, - "children": true, - "accountColour": "rgba(137, 46, 6, 0.5)", - "regionColour": "rgba(9, 86, 99, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 714.3399830149428, - "y": -94.00761752233173 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Instance-4f3d76df5e6a35f9b4d5d61077310443", - "level": 6, - "id": "d6f059e96c6e9e829a41fb4da3e2f858", - "title": "i-020dcec81e2a6ffa9", - "label": "i-020dcec81e...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(4, 122, 140, 0.5)", - "color": "#1D8102", - "borderStyle": "dotted", - "borderColour": "#1D8102", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "d6f059e96c6e9e829a41fb4da3e2f858", - "state": { - "status": "status-available", - "text": "running", - "color": "#1D8102" - }, - "image": "/static/media/Amazon-EC2_T2-Instance_light-bg.b149522e.svg", - "cost": 0, - "private": false, - "detailsComponent": { - "key": null, - "ref": null, - "props": { - "title": "Instance Details", - "configuration": "{\"amiLaunchIndex\":0,\"imageId\":\"ami-082b5a644766e0e6f\",\"instanceId\":\"i-020dcec81e2a6ffa9\",\"instanceType\":\"t2.micro\",\"kernelId\":null,\"keyName\":\"test-keys\",\"launchTime\":\"2019-08-29T21:29:53.000Z\",\"monitoring\":{\"state\":\"disabled\"},\"placement\":{\"availabilityZone\":\"us-west-2b\",\"affinity\":null,\"groupName\":\"\",\"partitionNumber\":null,\"hostId\":null,\"tenancy\":\"default\",\"spreadDomain\":null,\"hostResourceGroupArn\":null},\"platform\":null,\"privateDnsName\":\"ip-10-0-0-184.us-west-2.compute.internal\",\"privateIpAddress\":\"10.0.0.184\",\"productCodes\":[],\"publicDnsName\":\"\",\"publicIpAddress\":null,\"ramdiskId\":null,\"state\":{\"code\":16,\"name\":\"running\"},\"stateTransitionReason\":\"\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"architecture\":\"x86_64\",\"blockDeviceMappings\":[{\"deviceName\":\"/dev/xvda\",\"ebs\":{\"attachTime\":\"2019-08-29T21:29:54.000Z\",\"deleteOnTermination\":true,\"status\":\"attached\",\"volumeId\":\"vol-07c67a389d9ce96eb\"}}],\"clientToken\":\"\",\"ebsOptimized\":false,\"enaSupport\":true,\"hypervisor\":\"xen\",\"iamInstanceProfile\":null,\"instanceLifecycle\":null,\"elasticGpuAssociations\":[],\"elasticInferenceAcceleratorAssociations\":[],\"networkInterfaces\":[{\"association\":null,\"attachment\":{\"attachTime\":\"2019-08-29T21:29:53.000Z\",\"attachmentId\":\"eni-attach-0ea05031065e898db\",\"deleteOnTermination\":true,\"deviceIndex\":0,\"status\":\"attached\"},\"description\":\"Primary network interface\",\"groups\":[{\"groupName\":\"launch-wizard-1\",\"groupId\":\"sg-01aa7066a59ed75b3\"}],\"ipv6Addresses\":[],\"macAddress\":\"06:9c:ec:fa:bc:e4\",\"networkInterfaceId\":\"eni-0701b03dbb9f56362\",\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\",\"privateIpAddresses\":[{\"association\":null,\"primary\":true,\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\"}],\"sourceDestCheck\":true,\"status\":\"in-use\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"interfaceType\":\"interface\"}],\"outpostArn\":null,\"rootDeviceName\":\"/dev/xvda\",\"rootDeviceType\":\"ebs\",\"securityGroups\":[{\"groupName\":\"launch-wizard-1\",\"groupId\":\"sg-01aa7066a59ed75b3\"}],\"sourceDestCheck\":true,\"spotInstanceRequestId\":null,\"sriovNetSupport\":null,\"stateReason\":null,\"tags\":[],\"virtualizationType\":\"hvm\",\"cpuOptions\":{\"coreCount\":1,\"threadsPerCore\":1},\"capacityReservationId\":null,\"capacityReservationSpecification\":{\"capacityReservationPreference\":\"open\",\"capacityReservationTarget\":null},\"hibernationOptions\":{\"configured\":false},\"licenses\":[],\"metadataOptions\":{\"state\":\"applied\",\"httpTokens\":\"optional\",\"httpPutResponseHopLimit\":1,\"httpEndpoint\":\"enabled\"}}" - }, - "_owner": null - }, - "resource": { - "id": "i-020dcec81e2a6ffa9", - "type": "AWS::EC2::Instance", - "tags": "{}", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:instance/i-020dcec81e2a6ffa9", - "region": "us-west-2", - "state": "{\"code\":16,\"name\":\"running\"}", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/ec2/v2/home?region=us-west-2#Instances:sort=instanceId", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-west-2#Instances:sort=instanceId", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "subnetId": "subnet-02eda0882cabaa9c8", - "kernelId": "null", - "resourceId": "i-020dcec81e2a6ffa9", - "enaSupport": "true", - "availabilityZone": "us-west-2b", - "loggedInURL": "https://us-west-2.console.aws.amazon.com/ec2/v2/home?region=us-west-2#Instances:sort=instanceId", - "relationships": "[{\"resourceType\":\"AWS::EC2::NetworkInterface\",\"resourceId\":\"eni-0701b03dbb9f56362\",\"relationshipName\":\"Contains NetworkInterface\"},{\"resourceType\":\"AWS::EC2::SecurityGroup\",\"resourceId\":\"sg-01aa7066a59ed75b3\",\"relationshipName\":\"Is associated with SecurityGroup\"},{\"resourceType\":\"AWS::EC2::Subnet\",\"resourceId\":\"subnet-02eda0882cabaa9c8\",\"relationshipName\":\"Is contained in Subnet\"},{\"resourceType\":\"AWS::EC2::Volume\",\"resourceId\":\"vol-07c67a389d9ce96eb\",\"relationshipName\":\"Is attached to Volume\"},{\"resourceType\":\"AWS::EC2::VPC\",\"resourceId\":\"vpc-0e5b840cdea4083c4\",\"relationshipName\":\"Is contained in Vpc\"}]", - "state": "{\"code\":16,\"name\":\"running\"}", - "ebsOptimized": "false", - "imageId": "ami-082b5a644766e0e6f", - "configurationItemMD5Hash": "", - "publicDnsName": "", - "version": "1.3", - "privateIpAddress": "10.0.0.184", - "tags": "{}", - "capacityReservationId": "null", - "accountId": "XXXXXXXXXXXX", - "launchTime": "2019-08-29T21:29:53.000Z", - "sriovNetSupport": "null", - "configurationItemStatus": "OK", - "virtualizationType": "hvm", - "ramdiskId": "null", - "configuration": "{\"amiLaunchIndex\":0,\"imageId\":\"ami-082b5a644766e0e6f\",\"instanceId\":\"i-020dcec81e2a6ffa9\",\"instanceType\":\"t2.micro\",\"kernelId\":null,\"keyName\":\"test-keys\",\"launchTime\":\"2019-08-29T21:29:53.000Z\",\"monitoring\":{\"state\":\"disabled\"},\"placement\":{\"availabilityZone\":\"us-west-2b\",\"affinity\":null,\"groupName\":\"\",\"partitionNumber\":null,\"hostId\":null,\"tenancy\":\"default\",\"spreadDomain\":null,\"hostResourceGroupArn\":null},\"platform\":null,\"privateDnsName\":\"ip-10-0-0-184.us-west-2.compute.internal\",\"privateIpAddress\":\"10.0.0.184\",\"productCodes\":[],\"publicDnsName\":\"\",\"publicIpAddress\":null,\"ramdiskId\":null,\"state\":{\"code\":16,\"name\":\"running\"},\"stateTransitionReason\":\"\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"architecture\":\"x86_64\",\"blockDeviceMappings\":[{\"deviceName\":\"/dev/xvda\",\"ebs\":{\"attachTime\":\"2019-08-29T21:29:54.000Z\",\"deleteOnTermination\":true,\"status\":\"attached\",\"volumeId\":\"vol-07c67a389d9ce96eb\"}}],\"clientToken\":\"\",\"ebsOptimized\":false,\"enaSupport\":true,\"hypervisor\":\"xen\",\"iamInstanceProfile\":null,\"instanceLifecycle\":null,\"elasticGpuAssociations\":[],\"elasticInferenceAcceleratorAssociations\":[],\"networkInterfaces\":[{\"association\":null,\"attachment\":{\"attachTime\":\"2019-08-29T21:29:53.000Z\",\"attachmentId\":\"eni-attach-0ea05031065e898db\",\"deleteOnTermination\":true,\"deviceIndex\":0,\"status\":\"attached\"},\"description\":\"Primary network interface\",\"groups\":[{\"groupName\":\"launch-wizard-1\",\"groupId\":\"sg-01aa7066a59ed75b3\"}],\"ipv6Addresses\":[],\"macAddress\":\"06:9c:ec:fa:bc:e4\",\"networkInterfaceId\":\"eni-0701b03dbb9f56362\",\"ownerId\":\"XXXXXXXXXXXX\",\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\",\"privateIpAddresses\":[{\"association\":null,\"primary\":true,\"privateDnsName\":null,\"privateIpAddress\":\"10.0.0.184\"}],\"sourceDestCheck\":true,\"status\":\"in-use\",\"subnetId\":\"subnet-02eda0882cabaa9c8\",\"vpcId\":\"vpc-0e5b840cdea4083c4\",\"interfaceType\":\"interface\"}],\"outpostArn\":null,\"rootDeviceName\":\"/dev/xvda\",\"rootDeviceType\":\"ebs\",\"securityGroups\":[{\"groupName\":\"launch-wizard-1\",\"groupId\":\"sg-01aa7066a59ed75b3\"}],\"sourceDestCheck\":true,\"spotInstanceRequestId\":null,\"sriovNetSupport\":null,\"stateReason\":null,\"tags\":[],\"virtualizationType\":\"hvm\",\"cpuOptions\":{\"coreCount\":1,\"threadsPerCore\":1},\"capacityReservationId\":null,\"capacityReservationSpecification\":{\"capacityReservationPreference\":\"open\",\"capacityReservationTarget\":null},\"hibernationOptions\":{\"configured\":false},\"licenses\":[],\"metadataOptions\":{\"state\":\"applied\",\"httpTokens\":\"optional\",\"httpPutResponseHopLimit\":1,\"httpEndpoint\":\"enabled\"}}", - "amiLaunchIndex": "0", - "title": "i-020dcec81e2a6ffa9", - "sourceDestCheck": "true", - "stateReason": "null", - "platform": "null", - "instanceId": "i-020dcec81e2a6ffa9", - "perspectiveBirthDate": "2020-05-01T00:01:38.060Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/ec2?region=us-west-2#Instances:sort=instanceId", - "relatedEvents": "[]", - "vpcId": "vpc-0e5b840cdea4083c4", - "hypervisor": "xen", - "arn": "arn:aws:ec2:us-west-2:XXXXXXXXXXXX:instance/i-020dcec81e2a6ffa9", - "resourceCreationTime": "2019-08-29T21:29:53.000Z", - "architecture": "x86_64", - "awsRegion": "us-west-2", - "supplementaryConfiguration": "{}", - "publicIpAddress": "null", - "stateTransitionReason": "", - "clientToken": "", - "instanceType": "t2.micro", - "keyName": "test-keys", - "configurationItemCaptureTime": "2020-01-27T06:32:51.257Z", - "iamInstanceProfile": "null", - "instanceLifecycle": "null", - "configurationStateId": "1580106771257", - "spotInstanceRequestId": "null", - "privateDnsName": "ip-10-0-0-184.us-west-2.compute.internal", - "resourceType": "AWS::EC2::Instance" - } - }, - "position": { - "x": 714.3399830149428, - "y": -94.00761752233173 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "4a47b8c9cae6aa1d2d1292f5c0794b72", - "title": "Name : test-subnet", - "label": "Name : test-...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(216, 85, 15, 0.5)", - "regionColour": "rgba(175, 17, 83, 0.5)", - "color": "#fff", - "borderStyle": "solid", - "borderColour": "#545B64", - "borderOpacity": 0.25, - "borderSize": 1, - "opacity": "0", - "clickedId": "4a47b8c9cae6aa1d2d1292f5c0794b72", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "private": false, - "resource": { - "id": "Name", - "value": "test-subnet", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "resourceId": "Name", - "awsRegion": "global", - "perspectiveBirthDate": "2020-05-01T00:01:44.936Z", - "title": "Name : test-subnet", - "resourceType": "AWS::TAGS::TAG", - "resourceValue": "test-subnet" - } - }, - "position": { - "x": 1283.3399990149428, - "y": 36.39233362061628 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - } - ], - "edges": [ - { - "data": { - "id": "c127601b479d2c4aa5b75cb53cfe46d1-2efcbf917e6a034846bd9546de3f0ffc", - "label": "subnet-0f1dae813aa044769-Name : Atlas-PrivSub-B", - "source": "c127601b479d2c4aa5b75cb53cfe46d1", - "sourceMetadata": { - "childIds": [] - }, - "target": "2efcbf917e6a034846bd9546de3f0ffc", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "c127601b479d2c4aa5b75cb53cfe46d1-ae1147ee7ae675ab12405984d746450b", - "label": "subnet-0f1dae813aa044769-acl-08b9a30d48943de21", - "source": "c127601b479d2c4aa5b75cb53cfe46d1", - "sourceMetadata": { - "childIds": [] - }, - "target": "ae1147ee7ae675ab12405984d746450b", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "4f3d76df5e6a35f9b4d5d61077310443-dfcb519792f64e31f0d181d38ab12a14", - "label": "subnet-02eda0882cabaa9c8-acl-01b18dbec4f3bd719", - "isSourceParent": true, - "source": "4f3d76df5e6a35f9b4d5d61077310443", - "sourceMetadata": { - "childIds": [ - "663aa59a376e338b60d402467b4d980b", - "d6f059e96c6e9e829a41fb4da3e2f858" - ] - }, - "target": "dfcb519792f64e31f0d181d38ab12a14", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "4f3d76df5e6a35f9b4d5d61077310443-4a47b8c9cae6aa1d2d1292f5c0794b72", - "label": "subnet-02eda0882cabaa9c8-Name : test-subnet", - "isSourceParent": true, - "source": "4f3d76df5e6a35f9b4d5d61077310443", - "sourceMetadata": { - "childIds": [ - "663aa59a376e338b60d402467b4d980b", - "d6f059e96c6e9e829a41fb4da3e2f858" - ] - }, - "target": "4a47b8c9cae6aa1d2d1292f5c0794b72", - "targetMetadata": { - "childIds": [] - } - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - } - ] - }, - "style": [ - { - "selector": ".image", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "1", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "data(borderStyle)", - "border-width": "data(borderSize)", - "border-color": "data(borderColour)" - } - }, - { - "selector": ".vpc", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(104,61,194)", - "background-opacity": "0.05", - "text-margin-y": "-4.5", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(104,61,194)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(104,61,194)", - "text-background-color": "rgb(104,61,194)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".vpc:active", - "style": { - "label": "data(label)", - "overlay-color": "rgb(104,61,194)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(subnetColour)", - "background-opacity": "0.05", - "border-style": "solid", - "border-width": "1px", - "border-color": "data(subnetColour)", - "text-background-opacity": "1", - "text-border-color": "data(subnetColour)", - "text-background-color": "data(subnetColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet:active", - "style": { - "label": "data(label)", - "overlay-color": "data(subnetColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".type", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(84,91,100)", - "background-opacity": "0.05", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "text-background-padding": "3px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region:active", - "style": { - "label": "data(label)", - "overlay-color": "data(regionColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(regionColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(regionColour)", - "text-background-color": "data(regionColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone:active", - "style": { - "label": "data(label)", - "overlay-color": "rgb(247,153,31)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "dashed", - "border-width": "1px", - "border-color": "rgb(247,153,31)", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(247,153,31)", - "text-background-color": "rgb(247,153,31)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(0,0,0)" - } - }, - { - "selector": ".account:active", - "style": { - "label": "data(label)", - "overlay-color": "data(accountColour)", - "overlay-opacity": "0.45", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".account", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "8", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(accountColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(accountColour)", - "text-background-color": "data(accountColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": "node.highlight", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "overlay-color": "rgb(84,91,100)", - "overlay-opacity": "0.45", - "background-opacity": "1", - "shape": "square", - "color": "rgb(84,91,100)", - "border-style": "data(borderStyle)", - "border-width": "1px", - "border-color": "data(borderColour)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.clicked", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-opacity": "1", - "shape": "square", - "color": "rgb(35,47,62)", - "border-style": "solid", - "border-width": "3px", - "border-color": "rgb(35,47,62)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.softDelete", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.5", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "opacity": "0.25" - } - }, - { - "selector": "edge", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "1px", - "line-style": "solid", - "line-color": "rgb(84,91,100)" - } - }, - { - "selector": "edge.highlight", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "2px", - "line-style": "dashed", - "line-color": "rgb(84,91,100)" - } - }, - { - "selector": "edge.cy-expand-collapse-meta-edge", - "style": { - "curve-style": "unbundled-bezier", - "control-point-distances": "0px 0px 0px", - "line-style": "dashed", - "line-color": "rgb(236,114,17)", - "line-dash-pattern": "6 3", - "width": "2px" - } - }, - { - "selector": "node.cy-expand-collapse-collapsed-node", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "rgb(255,255,255)", - "background-opacity": "1", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "background-image": "data(image)", - "background-fit": "none", - "shape": "roundrectangle", - "color": "rgb(255,255,255)", - "background-width": "50%", - "background-height": "50%", - "padding": "100px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - } - ], - "data": {}, - "zoomingEnabled": true, - "userZoomingEnabled": true, - "zoom": 0.7637829972521694, - "minZoom": 0.5, - "maxZoom": 2.5, - "panningEnabled": true, - "userPanningEnabled": true, - "pan": { - "x": 451.25904913630393, - "y": 377.17729765426645 - }, - "boxSelectionEnabled": true, - "renderer": { - "name": "canvas" - } -} \ No newline at end of file diff --git a/source/backend/functions/drawio/test-events/oneS3Bucket.json b/source/backend/functions/drawio/test-events/oneS3Bucket.json deleted file mode 100644 index 82fe5db9..00000000 --- a/source/backend/functions/drawio/test-events/oneS3Bucket.json +++ /dev/null @@ -1,1689 +0,0 @@ -{ - "elements": { - "nodes": [ - { - "data": { - "id": "XXXXXXXXXXXX-undefined", - "level": 0, - "title": "XXXXXXXXXXXX", - "label": "XXXXXXXXXXXX - $0", - "type": "account", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "global", - "type": "region", - "children": [ - { - "label": "TAG", - "type": "type", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "CustomerManagedPolicyStatement", - "type": "type", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "us-east-1", - "type": "region", - "children": [ - { - "label": "Stack", - "type": "type", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "Bucket", - "type": "type", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 839.8842273840894, - "y": 401.9636942276861 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "account removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-east-1", - "label": "us-east-1 - $0", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "Stack", - "type": "type", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "Bucket", - "type": "type", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 773.5152567688649, - "y": 590.731848863843 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "Bucket", - "label": "Bucket - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 850, - "y": 570 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "a1fad98fc34ea8f51b7b654ead065935", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "label": "perspective-...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "a1fad98fc34ea8f51b7b654ead065935", - "image": "/static/media/Amazon-Simple-Storage-Service-S3.119552e8.svg", - "cost": 0, - "resource": { - "id": "perspective-region-configbucket-kdzcrlhnx864", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "type": "AWS::S3::Bucket", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "region": "us-east-1", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - } - }, - "position": { - "x": 850, - "y": 570 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "global-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "global", - "label": "global - $0", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "TAG", - "type": "type", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "CustomerManagedPolicyStatement", - "type": "type", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 869.737939230449, - "y": 275.4636917276863 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "TAG-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "TAG", - "label": "TAG - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 756.7379372304489, - "y": 275.4636917276863 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "75f8817fb35bb8f6196d91f585059faa", - "title": "aws:cloudformation:stack-name : perspective-region", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "75f8817fb35bb8f6196d91f585059faa", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:stack-name", - "value": "perspective-region", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 756.7379372304489, - "y": 275.46369172768624 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "49e773f8f27513b0a880ae94fd1b4d45", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:stack-id", - "value": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 756.7379372304489, - "y": 192.4636907276863 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "9146d535139dbdddf25c92cb6cfda4d5", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:logical-id", - "value": "ConfigBucket", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 756.7379372304489, - "y": 358.46369272768624 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "CustomerManagedPolicyStatement", - "label": "CustomerManagedPolicyStatement - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 941.237940730449, - "y": 316.96369222768624 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "6a95ae6954e4863a74d49396916013bc", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "6a95ae6954e4863a74d49396916013bc", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "75213645b22db5e4259ca6209642c1aa", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 899.8941607459611, - "y": 275.4636917276862 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "e7ec52db6213d7f9f07e7ba0b9f15852", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "44fbd8785f7c004d4d2e35c03704622b", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 899.737940230449, - "y": 358.46369272768624 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "80b85487ad21f3553dedc23a6d4a347c", - "title": "Allow-s3:GetBucketAcl", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "80b85487ad21f3553dedc23a6d4a347c", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 982.737941230449, - "y": 358.46369272768624 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "Stack", - "label": "Stack - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 697.0305135377297, - "y": 611.463697727686 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "6a634e8c1034e28a4698c12bd950a120", - "title": "perspective-region", - "label": "perspective-...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "6a634e8c1034e28a4698c12bd950a120", - "image": "/static/media/AWS-CloudFormation.af148a59.svg", - "cost": 0, - "resource": { - "id": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "name": "perspective-region", - "type": "AWS::CloudFormation::Stack", - "tags": "{}", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "region": "us-east-1", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - } - }, - "position": { - "x": 697.0305135377297, - "y": 611.463697727686 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - } - ], - "edges": [ - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-75f8817fb35bb8f6196d91f585059faa", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "75f8817fb35bb8f6196d91f585059faa" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-49e773f8f27513b0a880ae94fd1b4d45", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "49e773f8f27513b0a880ae94fd1b4d45" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-9146d535139dbdddf25c92cb6cfda4d5", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "9146d535139dbdddf25c92cb6cfda4d5" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-6a95ae6954e4863a74d49396916013bc", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "6a95ae6954e4863a74d49396916013bc" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-e7ec52db6213d7f9f07e7ba0b9f15852", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "e7ec52db6213d7f9f07e7ba0b9f15852" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-80b85487ad21f3553dedc23a6d4a347c", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "80b85487ad21f3553dedc23a6d4a347c" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-6a634e8c1034e28a4698c12bd950a120", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "6a634e8c1034e28a4698c12bd950a120" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - } - ] - }, - "style": [ - { - "selector": ".image", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "1", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(170,183,184)" - } - }, - { - "selector": ".vpc", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-4.5", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(104,61,194)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(104,61,194)", - "text-background-color": "rgb(104,61,194)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(20,126,186)", - "text-background-opacity": "1", - "text-border-color": "rgb(20,126,186)", - "text-background-color": "rgb(20,126,186)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".type", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "text-background-padding": "3px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(regionColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(regionColour)", - "text-background-color": "data(regionColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "dashed", - "border-width": "1px", - "border-color": "rgb(247,153,31)", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(247,153,31)", - "text-background-color": "rgb(247,153,31)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(0,0,0)" - } - }, - { - "selector": ".account", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "8", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(accountColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(accountColour)", - "text-background-color": "data(accountColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": "node.highlight", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "overlay-color": "rgb(35,47,62)", - "overlay-opacity": "0.15", - "background-opacity": "1", - "shape": "square", - "color": "rgb(35,47,62)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.softDelete", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.5", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "opacity": "0.25" - } - }, - { - "selector": ".redDot, .amberDot", - "style": { - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,0,0)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.3", - "shape": "square", - "border-style": "solid", - "border-width": "3px", - "border-color": "rgb(255,0,0)" - } - }, - { - "selector": "edge", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "1px", - "line-style": "solid", - "line-color": "rgb(170,183,184)" - } - }, - { - "selector": "edge.highlight", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "2px", - "line-style": "dashed", - "line-color": "rgb(35,47,62)" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - } - ], - "data": {}, - "zoomingEnabled": true, - "userZoomingEnabled": true, - "zoom": 1.1698113073196412, - "minZoom": 0.5, - "maxZoom": 1e+50, - "panningEnabled": true, - "userPanningEnabled": true, - "pan": { - "x": -144.50606603332847, - "y": -77.90092004681532 - }, - "boxSelectionEnabled": true, - "renderer": { - "name": "canvas" - } -} \ No newline at end of file diff --git a/source/backend/functions/drawio/test-events/oneS3BucketWithFocus.json b/source/backend/functions/drawio/test-events/oneS3BucketWithFocus.json deleted file mode 100644 index a5482183..00000000 --- a/source/backend/functions/drawio/test-events/oneS3BucketWithFocus.json +++ /dev/null @@ -1,1825 +0,0 @@ -{ - "elements": { - "nodes": [ - { - "data": { - "id": "XXXXXXXXXXXX-undefined", - "level": 0, - "title": "XXXXXXXXXXXX", - "label": "XXXXXXXXXXXX - $0", - "type": "account", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "global", - "type": "region", - "children": [ - { - "label": "TAG", - "type": "type", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "CustomerManagedPolicyStatement", - "type": "type", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "us-east-1", - "type": "region", - "children": [ - { - "label": "Stack", - "type": "type", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "Bucket", - "type": "type", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 770.9525930556565, - "y": 351.463135145391 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "account removeAll _gridParentPadding" - }, - { - "data": { - "id": "us-east-1-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "us-east-1", - "label": "us-east-1 - $0", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "Stack", - "type": "type", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "Bucket", - "type": "type", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 754.5460587865753, - "y": 470 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "Bucket", - "label": "Bucket - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "a1fad98fc34ea8f51b7b654ead065935", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "label": "AWS::S3::Bucket", - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - }, - "parent": true, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 830, - "y": 470 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "a1fad98fc34ea8f51b7b654ead065935", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "label": "perspective-...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "a1fad98fc34ea8f51b7b654ead065935", - "image": "/static/media/Amazon-Simple-Storage-Service-S3.119552e8.svg", - "cost": 0, - "resource": { - "id": "perspective-region-configbucket-kdzcrlhnx864", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "type": "AWS::S3::Bucket", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "region": "us-east-1", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "perspective-region-configbucket-kdzcrlhnx864", - "configuration": "{\"name\":\"perspective-region-configbucket-kdzcrlhnx864\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:10:32.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketTaggingConfiguration\":\"{\\\"tagSets\\\":[{\\\"tags\\\":{\\\"aws:cloudformation:stack-id\\\":\\\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\\\",\\\"aws:cloudformation:stack-name\\\":\\\"perspective-region\\\",\\\"aws:cloudformation:logical-id\\\":\\\"ConfigBucket\\\"}}]}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "perspective-region-configbucket-kdzcrlhnx864", - "title": "perspective-region-configbucket-kdzcrlhnx864", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.901Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/perspective-region-configbucket-kdzcrlhnx864/?region=us-east-1", - "tags": "{\"aws:cloudformation:logical-id\":\"ConfigBucket\",\"aws:cloudformation:stack-id\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"aws:cloudformation:stack-name\":\"perspective-region\"}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328901", - "perspectiveBirthDate": "2020-01-30T17:16:34.334Z", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=perspective-region-configbucket-kdzcrlhnx864", - "relatedEvents": "[]", - "name": "perspective-region-configbucket-kdzcrlhnx864", - "arn": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "resourceCreationTime": "2020-01-30T17:10:32.000Z", - "resourceType": "AWS::S3::Bucket" - } - }, - "position": { - "x": 790, - "y": 510 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "5c8428ec9aaeaa4d7d774abcb813ca82", - "title": "cf-templates-1m48g5eaaqwb4-us-east-1", - "label": "cf-templates...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "5c8428ec9aaeaa4d7d774abcb813ca82", - "image": "/static/media/Amazon-Simple-Storage-Service-S3.119552e8.svg", - "cost": 0, - "resource": { - "id": "cf-templates-1m48g5eaaqwb4-us-east-1", - "name": "cf-templates-1m48g5eaaqwb4-us-east-1", - "type": "AWS::S3::Bucket", - "tags": "{}", - "arn": "arn:aws:s3:::cf-templates-1m48g5eaaqwb4-us-east-1", - "region": "us-east-1", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/cf-templates-1m48g5eaaqwb4-us-east-1/?region=us-east-1", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=cf-templates-1m48g5eaaqwb4-us-east-1", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "cf-templates-1m48g5eaaqwb4-us-east-1", - "configuration": "{\"name\":\"cf-templates-1m48g5eaaqwb4-us-east-1\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2020-01-30T17:08:56.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":null}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\",\"ServerSideEncryptionConfiguration\":\"{\\\"rules\\\":[{\\\"applyServerSideEncryptionByDefault\\\":{\\\"sseAlgorithm\\\":\\\"AES256\\\",\\\"kmsMasterKeyID\\\":null}}]}\"}", - "configurationItemMD5Hash": "", - "resourceName": "cf-templates-1m48g5eaaqwb4-us-east-1", - "title": "cf-templates-1m48g5eaaqwb4-us-east-1", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.375Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/cf-templates-1m48g5eaaqwb4-us-east-1/?region=us-east-1", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328375", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=cf-templates-1m48g5eaaqwb4-us-east-1", - "relatedEvents": "[]", - "name": "cf-templates-1m48g5eaaqwb4-us-east-1", - "arn": "arn:aws:s3:::cf-templates-1m48g5eaaqwb4-us-east-1", - "resourceCreationTime": "2020-01-30T17:08:56.000Z", - "resourceType": "AWS::S3::Bucket" - } - }, - "position": { - "x": 790, - "y": 430 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "Bucket-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "1e2269c898fd0ebbad94c5f6504c6c77", - "title": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "label": "cloudtrail-a...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "1e2269c898fd0ebbad94c5f6504c6c77", - "image": "/static/media/Amazon-Simple-Storage-Service-S3.119552e8.svg", - "cost": 0, - "resource": { - "id": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "name": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "type": "AWS::S3::Bucket", - "tags": "{}", - "arn": "arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "region": "us-east-1", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete/?region=us-east-1", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "ResourceDiscovered", - "awsRegion": "us-east-1", - "resourceId": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "configuration": "{\"name\":\"cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete\",\"owner\":{\"displayName\":null,\"id\":\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\"},\"creationDate\":\"2019-12-23T14:54:16.000Z\"}", - "supplementaryConfiguration": "{\"AccessControlList\":\"\\\"{\\\\\\\"grantSet\\\\\\\":null,\\\\\\\"grantList\\\\\\\":[{\\\\\\\"grantee\\\\\\\":{\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\",\\\\\\\"displayName\\\\\\\":null},\\\\\\\"permission\\\\\\\":\\\\\\\"FullControl\\\\\\\"}],\\\\\\\"owner\\\\\\\":{\\\\\\\"displayName\\\\\\\":null,\\\\\\\"id\\\\\\\":\\\\\\\"e935362f95a128f577ae2bd9ea79dc0284bb924254ac864e3b53643171936e06\\\\\\\"},\\\\\\\"isRequesterCharged\\\\\\\":false}\\\"\",\"BucketAccelerateConfiguration\":\"{\\\"status\\\":null}\",\"BucketLifecycleConfiguration\":\"{\\\"rules\\\":[{\\\"id\\\":\\\"Delete CloudTrail logs that are older than 10 years\\\",\\\"prefix\\\":\\\"AWSLogs/\\\",\\\"status\\\":\\\"Enabled\\\",\\\"filter\\\":null,\\\"expirationInDays\\\":3650,\\\"expiredObjectDeleteMarker\\\":false,\\\"noncurrentVersionExpirationInDays\\\":-1,\\\"expirationDate\\\":null,\\\"transitions\\\":null,\\\"noncurrentVersionTransitions\\\":null,\\\"abortIncompleteMultipartUpload\\\":null}]}\",\"BucketLoggingConfiguration\":\"{\\\"destinationBucketName\\\":null,\\\"logFilePrefix\\\":null}\",\"BucketNotificationConfiguration\":\"{\\\"configurations\\\":{}}\",\"BucketPolicy\":\"{\\\"policyText\\\":\\\"{\\\\\\\"Version\\\\\\\":\\\\\\\"2012-10-17\\\\\\\",\\\\\\\"Statement\\\\\\\":[{\\\\\\\"Sid\\\\\\\":\\\\\\\"AWSCloudTrailAclCheck20150319\\\\\\\",\\\\\\\"Effect\\\\\\\":\\\\\\\"Allow\\\\\\\",\\\\\\\"Principal\\\\\\\":{\\\\\\\"Service\\\\\\\":\\\\\\\"cloudtrail.amazonaws.com\\\\\\\"},\\\\\\\"Action\\\\\\\":\\\\\\\"s3:GetBucketAcl\\\\\\\",\\\\\\\"Resource\\\\\\\":\\\\\\\"arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete\\\\\\\"},{\\\\\\\"Sid\\\\\\\":\\\\\\\"AWSCloudTrailWrite20150319\\\\\\\",\\\\\\\"Effect\\\\\\\":\\\\\\\"Allow\\\\\\\",\\\\\\\"Principal\\\\\\\":{\\\\\\\"Service\\\\\\\":\\\\\\\"cloudtrail.amazonaws.com\\\\\\\"},\\\\\\\"Action\\\\\\\":\\\\\\\"s3:PutObject\\\\\\\",\\\\\\\"Resource\\\\\\\":\\\\\\\"arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete/AWSLogs/XXXXXXXXXXXX/*\\\\\\\",\\\\\\\"Condition\\\\\\\":{\\\\\\\"StringEquals\\\\\\\":{\\\\\\\"s3:x-amz-acl\\\\\\\":\\\\\\\"bucket-owner-full-control\\\\\\\"}}},{\\\\\\\"Sid\\\\\\\":\\\\\\\"AWSCloudTrailHTTPSOnly20180329\\\\\\\",\\\\\\\"Effect\\\\\\\":\\\\\\\"Deny\\\\\\\",\\\\\\\"Principal\\\\\\\":{\\\\\\\"Service\\\\\\\":\\\\\\\"cloudtrail.amazonaws.com\\\\\\\"},\\\\\\\"Action\\\\\\\":\\\\\\\"s3:*\\\\\\\",\\\\\\\"Resource\\\\\\\":[\\\\\\\"arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete/AWSLogs/XXXXXXXXXXXX/*\\\\\\\",\\\\\\\"arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete\\\\\\\"],\\\\\\\"Condition\\\\\\\":{\\\\\\\"Bool\\\\\\\":{\\\\\\\"aws:SecureTransport\\\\\\\":\\\\\\\"false\\\\\\\"}}}]}\\\"}\",\"BucketVersioningConfiguration\":\"{\\\"status\\\":\\\"Off\\\",\\\"isMfaDeleteEnabled\\\":null}\",\"IsRequesterPaysEnabled\":\"false\"}", - "configurationItemMD5Hash": "", - "resourceName": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "title": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-01-30T17:12:08.699Z", - "loggedInURL": "https://s3.console.aws.amazon.com/s3/buckets/cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete/?region=us-east-1", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580404328699", - "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/s3?bucket=cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "relatedEvents": "[]", - "name": "cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "arn": "arn:aws:s3:::cloudtrail-awslogs-XXXXXXXXXXXX-kt5ekhod-isengard-do-not-delete", - "resourceCreationTime": "2019-12-23T14:54:16.000Z", - "resourceType": "AWS::S3::Bucket" - } - }, - "position": { - "x": 870, - "y": 430 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "global-XXXXXXXXXXXX-undefined", - "parent": "XXXXXXXXXXXX-undefined", - "level": 1, - "title": "global", - "label": "global - $0", - "type": "region", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "label": "TAG", - "type": "type", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - }, - { - "label": "CustomerManagedPolicyStatement", - "type": "type", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 770.9525930556565, - "y": 234.42627079078193 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "region removeAll _gridParentPadding" - }, - { - "data": { - "id": "TAG-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "TAG", - "label": "TAG - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "75f8817fb35bb8f6196d91f585059faa", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "label": "AWS::TAGS::TAG", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 657.9525910556565, - "y": 234.42627079078193 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "75f8817fb35bb8f6196d91f585059faa", - "title": "aws:cloudformation:stack-name : perspective-region", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "75f8817fb35bb8f6196d91f585059faa", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:stack-name", - "value": "perspective-region", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-name", - "perspectiveBirthDate": "2020-01-30T17:16:34.991Z", - "title": "aws:cloudformation:stack-name : perspective-region", - "resourceValue": "perspective-region", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 699.4525915556566, - "y": 192.9262702907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "49e773f8f27513b0a880ae94fd1b4d45", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "49e773f8f27513b0a880ae94fd1b4d45", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:stack-id", - "value": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:stack-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.813Z", - "title": "aws:cloudformation:stack-id : arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceValue": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 616.4525905556566, - "y": 192.9262702907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "TAG-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "9146d535139dbdddf25c92cb6cfda4d5", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "label": "aws:cloudfor...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "9146d535139dbdddf25c92cb6cfda4d5", - "image": "/static/media/AWS-Tags-bg.a178074b.svg", - "cost": 0, - "resource": { - "id": "aws:cloudformation:logical-id", - "value": "ConfigBucket", - "type": "AWS::TAGS::TAG", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "aws:cloudformation:logical-id", - "perspectiveBirthDate": "2020-01-30T17:16:34.530Z", - "title": "aws:cloudformation:logical-id : ConfigBucket", - "resourceValue": "ConfigBucket", - "resourceType": "AWS::TAGS::TAG" - } - }, - "position": { - "x": 699.4525915556566, - "y": 275.9262712907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "parent": "global-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "CustomerManagedPolicyStatement", - "label": "CustomerManagedPolicyStatement - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "6a95ae6954e4863a74d49396916013bc", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - }, - { - "id": "80b85487ad21f3553dedc23a6d4a347c", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "label": "AWS::IAM::CustomerManagedPolicyStatement", - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - }, - "parent": false, - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 883.9525950556565, - "y": 234.42627079078193 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "6a95ae6954e4863a74d49396916013bc", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "6a95ae6954e4863a74d49396916013bc", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "75213645b22db5e4259ca6209642c1aa", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "75213645b22db5e4259ca6209642c1aa", - "perspectiveBirthDate": "2020-01-30T17:17:02.333Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Resource\":\"*\"}", - "resources": "*", - "title": "Allow-s3:GetBucketAcl,s3:GetBucketLocation,s3:GetBucketLogging,s3:GetBucketNotification,s3:GetBucketPolicy,s3:GetBucketRequestPayment,s3:GetBucketVersioning,s3:GetBucketWebsite,s3:GetLifecycleConfiguration,s3:GetObjectAcl,s3:GetObjectVersionAcl,s3:ListAllMyBuckets,s3:ListBucket", - "actions": "[\"s3:GetBucketAcl\",\"s3:GetBucketLocation\",\"s3:GetBucketLogging\",\"s3:GetBucketNotification\",\"s3:GetBucketPolicy\",\"s3:GetBucketRequestPayment\",\"s3:GetBucketVersioning\",\"s3:GetBucketWebsite\",\"s3:GetLifecycleConfiguration\",\"s3:GetObjectAcl\",\"s3:GetObjectVersionAcl\",\"s3:ListAllMyBuckets\",\"s3:ListBucket\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 873.7084648842892, - "y": 192.9262702907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "e7ec52db6213d7f9f07e7ba0b9f15852", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "e7ec52db6213d7f9f07e7ba0b9f15852", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "44fbd8785f7c004d4d2e35c03704622b", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "44fbd8785f7c004d4d2e35c03704622b", - "perspectiveBirthDate": "2020-01-30T17:17:06.173Z", - "effect": "Allow", - "statement": "{\"Action\":[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"],\"Resource\":\"*\",\"Effect\":\"Allow\"}", - "resources": "*", - "title": "Allow-s3:Get*,s3:List*,s3:Put*,s3:Create*", - "actions": "[\"s3:Get*\",\"s3:List*\",\"s3:Put*\",\"s3:Create*\"]", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 842.4525945556566, - "y": 275.9262712907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "80b85487ad21f3553dedc23a6d4a347c", - "title": "Allow-s3:GetBucketAcl", - "label": "Allow-s3:Get...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "80b85487ad21f3553dedc23a6d4a347c", - "image": "/static/media/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg.58ecd424.svg", - "cost": 0, - "resource": { - "id": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "type": "AWS::IAM::CustomerManagedPolicyStatement", - "region": "global", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "accountId": "XXXXXXXXXXXX", - "awsRegion": "global", - "resourceId": "c8fee8a4989eed3a1eb1f8b0303cc65f", - "perspectiveBirthDate": "2020-01-30T17:17:12.692Z", - "effect": "Allow", - "statement": "{\"Action\":\"s3:GetBucketAcl\",\"Resource\":\"arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864\",\"Effect\":\"Allow\"}", - "resources": "arn:aws:s3:::perspective-region-configbucket-kdzcrlhnx864", - "title": "Allow-s3:GetBucketAcl", - "actions": "s3:GetBucketAcl", - "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" - } - }, - "position": { - "x": 925.4525955556564, - "y": 275.9262712907819 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - }, - { - "data": { - "id": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "parent": "us-east-1-XXXXXXXXXXXX-undefined", - "level": 2, - "title": "Stack", - "label": "Stack - $0", - "type": "type", - "borderStyle": "solid", - "color": "#fff", - "borderColour": "#AAB7B8", - "opacity": "0", - "children": [ - { - "id": "6a634e8c1034e28a4698c12bd950a120", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "label": "AWS::CloudFormation::Stack", - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - }, - "parent": false, - "costData": [], - "type": "node", - "cost": 0 - } - ], - "cost": 0, - "accountColour": "rgba(216, 170, 19, 0.5)", - "regionColour": "rgba(216, 170, 19, 0.5)", - "aZColour": "#00A1C9" - }, - "position": { - "x": 639.0921175731505, - "y": 478.92627629078197 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "type removeAll _gridParentPadding" - }, - { - "data": { - "parent": "Stack-us-east-1-XXXXXXXXXXXX-undefined", - "level": 3, - "id": "6a634e8c1034e28a4698c12bd950a120", - "title": "perspective-region", - "label": "perspective-...", - "shape": "image", - "type": "resource", - "accountColour": "rgba(59, 4, 147, 0.5)", - "regionColour": "rgba(226, 148, 13, 0.5)", - "color": "#fff", - "borderStyle": "dashed", - "borderColour": "#AAB7B8", - "opacity": "0", - "clickedId": "6a634e8c1034e28a4698c12bd950a120", - "image": "/static/media/AWS-CloudFormation.af148a59.svg", - "cost": 0, - "resource": { - "id": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "name": "perspective-region", - "type": "AWS::CloudFormation::Stack", - "tags": "{}", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "region": "us-east-1", - "accountId": "XXXXXXXXXXXX" - }, - "highlight": true, - "existing": false, - "properties": { - "configurationItemStatus": "OK", - "awsRegion": "us-east-1", - "resourceId": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "configuration": "{\"stackId\":\"arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671\",\"stackName\":\"perspective-region\",\"description\":\"This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template\",\"parameters\":[{\"parameterKey\":\"EXISTINGCONFIG\",\"parameterValue\":\"No\"},{\"parameterKey\":\"ACCOUNTID\",\"parameterValue\":\"XXXXXXXXXXXX\"},{\"parameterKey\":\"AGGREGATIONREGION\",\"parameterValue\":\"eu-west-1\"}],\"creationTime\":\"Jan 30, 2020 5:10:26 PM\",\"stackStatus\":\"CREATE_COMPLETE\",\"disableRollback\":false,\"notificationARNs\":[],\"capabilities\":[\"CAPABILITY_IAM\"],\"outputs\":[],\"tags\":[],\"enableTerminationProtection\":false,\"driftInformation\":{\"stackDriftStatus\":\"NOT_CHECKED\"}}", - "supplementaryConfiguration": "{\"EnableTerminationProtection\":\"false\",\"StackResourceSummaries\":\"[{\\\"logicalResourceId\\\":\\\"AggregationAuthorization\\\",\\\"physicalResourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:33 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigBucket\\\",\\\"physicalResourceId\\\":\\\"perspective-region-configbucket-kdzcrlhnx864\\\",\\\"resourceType\\\":\\\"AWS::S3::Bucket\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:10:52 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRecorder\\\",\\\"physicalResourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:49 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"ConfigRole\\\",\\\"physicalResourceId\\\":\\\"perspective-region-ConfigRole-4E587OFINS1G\\\",\\\"resourceType\\\":\\\"AWS::IAM::Role\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:15 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}},{\\\"logicalResourceId\\\":\\\"DeliveryChannel\\\",\\\"physicalResourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\",\\\"lastUpdatedTimestamp\\\":\\\"Jan 30, 2020 5:11:39 PM\\\",\\\"resourceStatus\\\":\\\"CREATE_COMPLETE\\\",\\\"driftInformation\\\":{\\\"stackResourceDriftStatus\\\":\\\"NOT_CHECKED\\\"}}]\",\"unsupportedResources\":\"[{\\\"resourceId\\\":\\\"arn:aws:config:us-east-1:XXXXXXXXXXXX:aggregation-authorization/XXXXXXXXXXXX/eu-west-1\\\",\\\"resourceType\\\":\\\"AWS::Config::AggregationAuthorization\\\"},{\\\"resourceId\\\":\\\"default\\\",\\\"resourceType\\\":\\\"AWS::Config::ConfigurationRecorder\\\"},{\\\"resourceId\\\":\\\"perspective-region-DeliveryChannel-1VP46ZFW1AHSW\\\",\\\"resourceType\\\":\\\"AWS::Config::DeliveryChannel\\\"}]\"}", - "configurationItemMD5Hash": "", - "description": "This Cloudformation template sets up aws config so that it will start collecting stats for a region and then send them to the configAggregator that was set-up in the account-import cloud formation template", - "resourceName": "perspective-region", - "title": "perspective-region", - "version": "1.3", - "availabilityZone": "Regional", - "configurationItemCaptureTime": "2020-02-06T02:12:00.064Z", - "tags": "{}", - "accountId": "XXXXXXXXXXXX", - "configurationStateId": "1580955120064", - "perspectiveBirthDate": "2020-02-06T02:16:26.610Z", - "relatedEvents": "[]", - "arn": "arn:aws:cloudformation:us-east-1:XXXXXXXXXXXX:stack/perspective-region/68898080-4383-11ea-a412-12709ad3d671", - "resourceCreationTime": "2020-01-30T17:10:26.361Z", - "resourceType": "AWS::CloudFormation::Stack" - } - }, - "position": { - "x": 639.0921175731505, - "y": 478.92627629078197 - }, - "group": "nodes", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": false, - "classes": "resource image selectable hoverover" - } - ], - "edges": [ - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-75f8817fb35bb8f6196d91f585059faa", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "75f8817fb35bb8f6196d91f585059faa" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-49e773f8f27513b0a880ae94fd1b4d45", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "49e773f8f27513b0a880ae94fd1b4d45" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-9146d535139dbdddf25c92cb6cfda4d5", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "9146d535139dbdddf25c92cb6cfda4d5" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-6a95ae6954e4863a74d49396916013bc", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "6a95ae6954e4863a74d49396916013bc" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-e7ec52db6213d7f9f07e7ba0b9f15852", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "e7ec52db6213d7f9f07e7ba0b9f15852" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-80b85487ad21f3553dedc23a6d4a347c", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "80b85487ad21f3553dedc23a6d4a347c" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - }, - { - "data": { - "id": "a1fad98fc34ea8f51b7b654ead065935-6a634e8c1034e28a4698c12bd950a120", - "source": "a1fad98fc34ea8f51b7b654ead065935", - "target": "6a634e8c1034e28a4698c12bd950a120" - }, - "position": { - "x": 0, - "y": 0 - }, - "group": "edges", - "removed": false, - "selected": false, - "selectable": true, - "locked": false, - "grabbable": true, - "pannable": true, - "classes": "" - } - ] - }, - "style": [ - { - "selector": ".image", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "1", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(170,183,184)" - } - }, - { - "selector": ".vpc", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-4.5", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(104,61,194)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(104,61,194)", - "text-background-color": "rgb(104,61,194)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".subnet", - "style": { - "label": "data(label)", - "font-size": "7", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(20,126,186)", - "text-background-opacity": "1", - "text-border-color": "rgb(20,126,186)", - "text-background-color": "rgb(20,126,186)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".type", - "style": { - "label": "data(label)", - "font-size": "6", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(84,91,100)", - "text-margin-y": "-3", - "text-border-width": "1px", - "text-background-opacity": "1", - "text-border-color": "rgb(84,91,100)", - "text-background-color": "rgb(84,91,100)", - "text-background-shape": "rectangle", - "text-background-padding": "3px", - "shape": "roundrectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".region", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(regionColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(regionColour)", - "text-background-color": "data(regionColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": ".availabilityZone", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "7", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "border-style": "dashed", - "border-width": "1px", - "border-color": "rgb(247,153,31)", - "text-margin-y": "-4.5", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "rgb(247,153,31)", - "text-background-color": "rgb(247,153,31)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(0,0,0)" - } - }, - { - "selector": ".account", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-size": "8", - "text-valign": "top", - "text-halign": "center", - "background-color": "data(color)", - "background-opacity": "data(opacity)", - "text-margin-y": "-5", - "border-style": "dashed", - "border-width": "1px", - "border-color": "data(accountColour)", - "text-border-width": "2px", - "text-background-opacity": "1", - "text-border-color": "data(accountColour)", - "text-background-color": "data(accountColour)", - "text-background-shape": "rectangle", - "text-background-padding": "5px", - "shape": "rectangle", - "color": "rgb(250,250,250)" - } - }, - { - "selector": "node.highlight", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "font-weight": "900", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "overlay-color": "rgb(35,47,62)", - "overlay-opacity": "0.15", - "background-opacity": "1", - "shape": "square", - "color": "rgb(35,47,62)", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px" - } - }, - { - "selector": "node.softDelete", - "style": { - "label": "data(label)", - "font-family": "Amazon Ember, Helvetica, Arial, sans-serif", - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,255,255)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.5", - "shape": "square", - "color": "rgb(0,0,0)", - "background-width-relative-to": "inner", - "background-height-relative-to": "inner", - "background-width": "50%", - "background-height": "50%", - "padding": "5px", - "border-style": "solid", - "border-width": "1px", - "border-color": "rgb(35,47,62)", - "opacity": "0.25" - } - }, - { - "selector": ".redDot, .amberDot", - "style": { - "text-valign": "bottom", - "text-halign": "center", - "font-size": "5", - "text-margin-y": "3px", - "background-color": "rgb(255,0,0)", - "background-image": "data(image)", - "background-fit": "cover cover", - "background-opacity": "0.3", - "shape": "square", - "border-style": "solid", - "border-width": "3px", - "border-color": "rgb(255,0,0)" - } - }, - { - "selector": "edge", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "1px", - "line-style": "solid", - "line-color": "rgb(170,183,184)" - } - }, - { - "selector": "edge.highlight", - "style": { - "curve-style": "bezier", - "target-arrow-shape": "none", - "width": "2px", - "line-style": "dashed", - "line-color": "rgb(35,47,62)" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - }, - { - "selector": "._gridParentPadding", - "style": { - "compound-sizing-wrt-labels": "exclude", - "padding": "20px" - } - } - ], - "data": {}, - "zoomingEnabled": true, - "userZoomingEnabled": true, - "zoom": 1.4963273683568432, - "minZoom": 0.5, - "maxZoom": 1e+50, - "panningEnabled": true, - "userPanningEnabled": true, - "pan": { - "x": -315.5974646948548, - "y": -107.3146483178167 - }, - "boxSelectionEnabled": true, - "renderer": { - "name": "canvas" - } -} \ No newline at end of file diff --git a/source/backend/functions/settings/package-lock.json b/source/backend/functions/settings/package-lock.json index f28fd456..a4621909 100644 --- a/source/backend/functions/settings/package-lock.json +++ b/source/backend/functions/settings/package-lock.json @@ -317,27 +317,6 @@ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true }, - "CSSselect": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/CSSselect/-/CSSselect-0.7.0.tgz", - "integrity": "sha1-5AVMZ7RnRl88lQDA2gqnh4xLq9I=", - "requires": { - "CSSwhat": "0.4", - "boolbase": "~1.0.0", - "domutils": "1.4", - "nth-check": "~1.0.0" - } - }, - "CSSwhat": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz", - "integrity": "sha1-hn2g/zn3eGEyQsRM/qg/CqTr35s=" - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, "acorn": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz", @@ -503,11 +482,6 @@ "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", "dev": true }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -616,25 +590,6 @@ "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", "dev": true }, - "cheerio": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.10.3.tgz", - "integrity": "sha1-UBA9QuMO9KG/VSAB1oTs7nCCe2c=", - "requires": { - "cheerio-select": "*", - "entities": "0.x", - "htmlparser2": "2.x", - "underscore": "*" - } - }, - "cheerio-select": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-0.0.3.tgz", - "integrity": "sha1-PyQgEU88ywsbB1wkXM+q5dYXo4g=", - "requires": { - "CSSselect": "0.x" - } - }, "chokidar": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.1.tgz", @@ -726,14 +681,6 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, - "commander": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz", - "integrity": "sha1-UNFlGGiuYOzP8KLZ80WVN2vGsEE=", - "requires": { - "keypress": "0.1.x" - } - }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -837,38 +784,12 @@ "esutils": "^2.0.2" } }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "domhandler": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.0.3.tgz", - "integrity": "sha1-iJ+N9iZAOvB4jinWbV1cb36/D9Y=", - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz", - "integrity": "sha1-CGVRN5bGswYDGFDhdVFrr4C3Km8=", - "requires": { - "domelementtype": "1" - } - }, "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, - "entities": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-0.5.0.tgz", - "integrity": "sha1-9hHLWuIhBQ4AEsZpeVA/164ZzEk=" - }, "es-abstract": { "version": "1.17.6", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", @@ -1420,26 +1341,6 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "htmlparser2": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-2.6.0.tgz", - "integrity": "sha1-soVk6p0bpWoQSs5qew/dovMVg28=", - "requires": { - "domelementtype": "1", - "domhandler": "2.0", - "domutils": "1.0" - }, - "dependencies": { - "domutils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.0.1.tgz", - "integrity": "sha1-WLWNd0d0kRVWwWuLAtmcYJ2YeGk=", - "requires": { - "domelementtype": "1" - } - } - } - }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -1905,11 +1806,6 @@ "integrity": "sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==", "dev": true }, - "keypress": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz", - "integrity": "sha1-SjGI1CkbZrT2XtuZ+AaqmuKTWSo=" - }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", @@ -2074,28 +1970,12 @@ "process-on-spawn": "^1.0.0" } }, - "nopt": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz", - "integrity": "sha1-bMzZd7gBMqB3MdbozljCyDA8+a8=", - "requires": { - "abbrev": "1" - } - }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "requires": { - "boolbase": "~1.0.0" - } - }, "nyc": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", @@ -2440,17 +2320,6 @@ "fromentries": "^1.2.0" } }, - "production": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/production/-/production-0.0.2.tgz", - "integrity": "sha1-IBKndBbJRMCSFsQKWWxXEa6Qz+g=", - "requires": { - "cheerio": "0.10.3", - "commander": "1.1.1", - "request": "2.12.0", - "yuglify": "*" - } - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -2520,49 +2389,6 @@ "es6-error": "^4.0.1" } }, - "request": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.12.0.tgz", - "integrity": "sha1-EfRvILPQ9ISMY4OZHIB5CvFsjkg=", - "requires": { - "form-data": "~0.0.3", - "mime": "~1.2.7" - }, - "dependencies": { - "form-data": { - "version": "0.0.3", - "bundled": true, - "requires": { - "async": "~0.1.9", - "combined-stream": "0.0.3", - "mime": "~1.2.2" - }, - "dependencies": { - "async": { - "version": "0.1.9", - "bundled": true - }, - "combined-stream": { - "version": "0.0.3", - "bundled": true, - "requires": { - "delayed-stream": "0.0.5" - }, - "dependencies": { - "delayed-stream": { - "version": "0.0.5", - "bundled": true - } - } - } - } - }, - "mime": { - "version": "1.2.7", - "bundled": true - } - } - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -2936,16 +2762,6 @@ "is-typedarray": "^1.0.0" } }, - "uglify-js": { - "version": "3.10.3", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.3.tgz", - "integrity": "sha512-Lh00i69Uf6G74mvYpHCI9KVVXLcHW/xu79YTvH7Mkc9zyKUeSPz0owW0dguj0Scavns3ZOh3wY63J0Zb97Za2g==" - }, - "underscore": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.11.0.tgz", - "integrity": "sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw==" - }, "uri-js": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", @@ -3302,21 +3118,6 @@ } } } - }, - "ycssmin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ycssmin/-/ycssmin-1.0.1.tgz", - "integrity": "sha1-fN3o23jPqwDSkBw7IwHjBPr03xY=" - }, - "yuglify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yuglify/-/yuglify-2.0.0.tgz", - "integrity": "sha1-nU5a3c4g9B7fIkhuIxG2HWo/jSE=", - "requires": { - "nopt": "~2.1.1", - "uglify-js": "^3.1.4", - "ycssmin": "~1.0.1" - } } } } diff --git a/source/backend/functions/settings/package.json b/source/backend/functions/settings/package.json index ac52d421..9e84ea45 100644 --- a/source/backend/functions/settings/package.json +++ b/source/backend/functions/settings/package.json @@ -15,7 +15,6 @@ "license": "ISC", "dependencies": { "@tuplo/dynoexpr": "^1.9.0", - "production": "0.0.2", "ramda": "0.27.0" }, "devDependencies": { diff --git a/source/backend/functions/settings/src/index.js b/source/backend/functions/settings/src/index.js index eb5906b8..c0224ef8 100644 --- a/source/backend/functions/settings/src/index.js +++ b/source/backend/functions/settings/src/index.js @@ -95,33 +95,56 @@ function deleteAccounts(docClient, configService, TableName, {configAggregator, .then(unprocessedAccounts => ({unprocessedAccounts})) } +function handleUpdateItemNotExistsError(err) { + if(err.code === "ConditionalCheckFailedException") { + throw new Error("Cannot update item that does not exist"); + } + throw err; +} + function updateAccount(docClient, TableName, {accountId, ...Update}) { + const PK = 'Account'; + const SK = `ACCNUMBER#${accountId}#METADATA`; + return docClient.update(dynoexpr({ TableName, Key: { - PK: 'Account', - SK: `ACCNUMBER#${accountId}#METADATA` + PK, + SK + }, + Condition: { + PK, + SK }, Update } )).promise() .then(() => ({accountId, ...Update})) + .catch(handleUpdateItemNotExistsError) } function updateRegions(docClient, TableName, {accountId, regions}) { return Promise.resolve(regions) - .then(R.map(({name, ...Update}) => (dynoexpr({ + .then(R.tap(console.log)) + .then(R.map(({name, ...Update}) => { + const PK = 'Account'; + const SK = `ACCNUMBER#${accountId}#REGION#${name}`; + + return dynoexpr({ TableName, Key: { - PK: 'Account', - SK: `ACCNUMBER#${accountId}#REGION#${name}` + PK, SK + }, + Condition: { + PK, SK }, Update } ) - ))) + })) .then(R.map(update(docClient))) .then(all) + .catch(handleUpdateItemNotExistsError) .then(() => ({accountId, regions})) } diff --git a/source/cfn/templates/account-import-template.yaml b/source/cfn/templates/account-import-template.yaml deleted file mode 100644 index fa47d62b..00000000 --- a/source/cfn/templates/account-import-template.yaml +++ /dev/null @@ -1,336 +0,0 @@ -AWSTemplateFormatVersion: '2010-09-09' -Description: - This Cloudformation template sets up the roles needed to import data into AWS Perspective. - It also sets up the main AWS Perspective configuration aggregator for this account and - authorises it to push its data to the main AWS Perspective aggregation account. - (SO0075b) - Solution - Import Account Template (uksb-1r0720e57) (version:v1.0.0) -Parameters: - AccountId: - Type: String - Default: <> - Description: The Perspective account Id - AggregationRegion: - Type: String - Default: <> - Description: The region where the Perspective account was installed - ConfigAggregator: - Type: String - Default: PerspectiveConfigAggregator - Description: The name that you want to give to the configAggregator. - AlreadyHaveConfigSetup: - Type: String - Default: 'No' - Description: 'Is AWS Config set-up within this account?' - AllowedValues: - - 'No' - - 'Yes' - ConstraintDescription: 'Please specify if this account has config set-up (Yes / No)' - -Conditions: - SetUpConfig: !Equals [!Ref AlreadyHaveConfigSetup, 'No'] - -Resources: - ConfigurationAggregator: - Type: AWS::Config::ConfigurationAggregator - #Condition: SetUpConfig - Properties: - AccountAggregationSources: - - AccountIds: - - !Ref AWS::AccountId - AllAwsRegions: true - ConfigurationAggregatorName: !Ref ConfigAggregator - - ConfigRecorder: - Type: AWS::Config::ConfigurationRecorder - Condition: SetUpConfig - Properties: - Name: default - RecordingGroup: - AllSupported: true - IncludeGlobalResourceTypes: true - RoleARN: !GetAtt [ConfigRole, Arn] - - DeliveryChannel: - Type: AWS::Config::DeliveryChannel - Condition: SetUpConfig - Properties: - S3BucketName: !Ref ConfigBucket - - AggregationAuthorization: - Type: 'AWS::Config::AggregationAuthorization' - Properties: - AuthorizedAccountId: !Ref AccountId - AuthorizedAwsRegion: !Ref AggregationRegion - - ConfigBucket: - Type: AWS::S3::Bucket - Metadata: - cfn_nag: - rules_to_suppress: - - id: W35 - reason: 'only accessed by config, writes very frequently so will be costly' - - id: W41 - reason: 'S3 Bucket should have encryption option set' - Condition: SetUpConfig - Properties: - PublicAccessBlockConfiguration: - BlockPublicAcls: true - BlockPublicPolicy: true - IgnorePublicAcls: true - RestrictPublicBuckets: true - AccessControl: Private - VersioningConfiguration: - Status: Enabled - BucketEncryption: - ServerSideEncryptionConfiguration: - - ServerSideEncryptionByDefault: - SSEAlgorithm: AES256 - - ConfigBucketPolicy: - Type: AWS::S3::BucketPolicy - Condition: SetUpConfig - Properties: - Bucket: !Ref ConfigBucket - PolicyDocument: !Sub | - { - "Version": "2012-10-17", - "Statement": [ - { - "Sid": "AWSConfigBucketPermissionsCheck", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:GetBucketAcl", - "Resource": "arn:aws:s3:::${ConfigBucket}" - }, - { - "Sid": "AWSConfigBucketExistenceCheck", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:ListBucket", - "Resource": "arn:aws:s3:::${ConfigBucket}" - }, - { - "Sid": " AWSConfigBucketDelivery", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:PutObject", - "Resource": "arn:aws:s3:::${ConfigBucket}/AWSLogs/${AWS::AccountId}/Config/*", - "Condition": { - "StringEquals": { - "s3:x-amz-acl": "bucket-owner-full-control" - } - } - }, - { - "Sid": "HttpsOnly", - "Action": "*", - "Effect": "Deny", - "Resource": "arn:aws:s3:::${ConfigBucket}/*", - "Principal": "*", - "Condition": { - "Bool": { - "aws:SecureTransport": "false" - } - } - } - ] - } - - ConfigRole: - Type: AWS::IAM::Role - Condition: SetUpConfig - Metadata: - ManagedPolicy: - "The use of this policy is advised in the AWS Config docs" - cfn_nag: - rules_to_suppress: - - id: W11 - reason: 'following AWS config best practices as documented online.' - Properties: - AssumeRolePolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Principal: - Service: [config.amazonaws.com] - Action: ['sts:AssumeRole'] - ManagedPolicyArns: ['arn:aws:iam::aws:policy/service-role/AWSConfigRole'] - Policies: - - PolicyName: root - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: s3:GetBucketAcl - Resource: - Fn::Sub: arn:aws:s3:::${ConfigBucket} - - Effect: Allow - Action: s3:PutObject - Resource: - Fn::Sub: arn:aws:s3:::${ConfigBucket}/AWSLogs/${AWS::AccountId}/* - Condition: - StringEquals: - s3:x-amz-acl: bucket-owner-full-control - - Effect: Allow - Action: config:Put* - Resource: '*' - - ZoomDiscoveryRole: - Type: AWS::IAM::Role - Metadata: - wildcard_resources: - - 'We have locked down resources as much as we can. - The nature of the role requires read-only access - to many services in order to discover what is in the account' - cfn_nag: - rules_to_suppress: - - id: W28 - reason: 'Role is used in external accounts and calls back to master config account to allow access to external config aggregators' - - id: W11 - reason: 'We have locked down resources as far as we can. It is read only access. Tags require wildcard "*"' - Properties: - RoleName: 'ZoomDiscoveryRole' - AssumeRolePolicyDocument: - Statement: - - Action: ['sts:AssumeRole'] - Effect: Allow - Principal: - AWS: !Sub 'arn:aws:iam::${AccountId}:root' - Version: '2012-10-17' - Policies: - - PolicyName: perspectiveAutoscaling - PolicyDocument: - Version: '2012-10-17' - Statement: - - Action: autoscaling:Describe* - Effect: Allow - Resource: '*' - - PolicyName: perspectiveEC2 - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - ec2:Get* - - ec2:Describe* - Resource: '*' - - PolicyName: perspectiveIAM - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - iam:Get* - - iam:List* - Resource: '*' - - PolicyName: perspectiveAPIGateway - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - apigateway:Get - Resource: 'arn:aws:apigateway:*::/*' - - PolicyName: perspectiveLoadBalancers - PolicyDocument: - Version: '2012-10-17' - Statement: - - Action: elasticloadbalancing:Describe* - Effect: Allow - Resource: '*' - - PolicyName: perspectiveRDS - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - rds:Describe* - Resource: '*' - - PolicyName: perspectiveLambda - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - lambda:List* - - lambda:Get* - Resource: '*' - - PolicyName: perspectiveCloudFormation - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - logs:List* - - logs:Describe* - - logs:Get* - Resource: '*' - - PolicyName: perspectiveCloudWatch - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - cloudwatch:List* - - cloudwatch:Describe* - - cloudwatch:Get* - Resource: '*' - - PolicyName: perspectiveECS - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - ecs:List* - - ecs:Describe* - Resource: '*' - - PolicyName: perspectiveConfig - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - config:Get* - - config:Deliver* - - config:List* - - config:SelectResourceConfig - - config:PutDeliveryChannel - Resource: '*' - - PolicyName: perspectiveCloudtrail - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - cloudtrail:GetTrailStatus - Resource: !Sub 'arn:aws:cloudtrail:${AWS::Region}:${AWS::AccountId}:trail*' - - PolicyName: perspectiveCloudtrailWildcards - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - cloudtrail:DescribeTrails - - cloudtrail:LookupEvents - Resource: '*' - - PolicyName: perspectiveTags - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: - - tag:GetResources - - tag:GetTagKeys - Resource: '*' \ No newline at end of file diff --git a/source/cfn/templates/account-region-template.yaml b/source/cfn/templates/account-region-template.yaml deleted file mode 100644 index 01f0a4d4..00000000 --- a/source/cfn/templates/account-region-template.yaml +++ /dev/null @@ -1,166 +0,0 @@ -AWSTemplateFormatVersion: '2010-09-09' -Description: - This CloudFormation template sets up AWS Config so that it will start - collecting stats for a region and then send them to the configAggregator - that was set-up in the account-import CloudFormation template - (SO0075c) - Solution - Import Region Template (uksb-1r0720e5f) (version:v1.0.0) -Parameters: - AccountId: - Type: String - Default: <> - Description: The AWS Perspectve Account Id - AggregationRegion: - Type: String - Default: <> - Description: The region where the AWS Perspective account was installed - AlreadyHaveConfigSetup: - Type: String - Default: 'No' - Description: 'Is AWS Config already set-up within this region?' - AllowedValues: - - 'No' - - 'Yes' - ConstraintDescription: 'Please specify if this region has config set-up (Yes / No)' - -Conditions: - SetUpConfig: !Equals [!Ref AlreadyHaveConfigSetup, 'No'] - -Resources: - ConfigRecorder: - Type: AWS::Config::ConfigurationRecorder - Condition: SetUpConfig - Properties: - Name: default - RecordingGroup: - AllSupported: true - IncludeGlobalResourceTypes: true - RoleARN: !GetAtt [ConfigRole, Arn] - - DeliveryChannel: - Type: AWS::Config::DeliveryChannel - Condition: SetUpConfig - Properties: - S3BucketName: !Ref ConfigBucket - - AggregationAuthorization: - Type: 'AWS::Config::AggregationAuthorization' - Properties: - AuthorizedAccountId: !Ref AccountId - AuthorizedAwsRegion: !Ref AggregationRegion - - ConfigBucket: - Type: AWS::S3::Bucket - Metadata: - cfn_nag: - rules_to_suppress: - - id: W35 - reason: 'only accessed by config, writes very frequently so will be costly' - - id: W41 - reason: 'S3 Bucket should have encryption option set' - Condition: SetUpConfig - Properties: - PublicAccessBlockConfiguration: - BlockPublicAcls: true - BlockPublicPolicy: true - IgnorePublicAcls: true - RestrictPublicBuckets: true - AccessControl: Private - VersioningConfiguration: - Status: Enabled - BucketEncryption: - ServerSideEncryptionConfiguration: - - ServerSideEncryptionByDefault: - SSEAlgorithm: AES256 - - ConfigBucketPolicy: - Type: AWS::S3::BucketPolicy - Condition: SetUpConfig - Properties: - Bucket: !Ref ConfigBucket - PolicyDocument: !Sub | - { - "Version": "2012-10-17", - "Statement": [ - { - "Sid": "AWSConfigBucketPermissionsCheck", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:GetBucketAcl", - "Resource": "arn:aws:s3:::${ConfigBucket}" - }, - { - "Sid": "AWSConfigBucketExistenceCheck", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:ListBucket", - "Resource": "arn:aws:s3:::${ConfigBucket}" - }, - { - "Sid": " AWSConfigBucketDelivery", - "Effect": "Allow", - "Principal": { - "Service": [ - "config.amazonaws.com" - ] - }, - "Action": "s3:PutObject", - "Resource": "arn:aws:s3:::${ConfigBucket}/AWSLogs/${AWS::AccountId}/Config/*", - "Condition": { - "StringEquals": { - "s3:x-amz-acl": "bucket-owner-full-control" - } - } - }, - { - "Sid": "HttpsOnly", - "Action": "*", - "Effect": "Deny", - "Resource": "arn:aws:s3:::${ConfigBucket}/*", - "Principal": "*", - "Condition": { - "Bool": { - "aws:SecureTransport": "false" - } - } - } - ] - } - - ConfigRole: - Type: AWS::IAM::Role - Condition: SetUpConfig - Metadata: - ManagedPolicy: 'The use of this policy is advised in the AWS Config docs' - Properties: - AssumeRolePolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Principal: - Service: [config.amazonaws.com] - Action: ['sts:AssumeRole'] - ManagedPolicyArns: ['arn:aws:iam::aws:policy/service-role/AWSConfigRole'] - Policies: - - PolicyName: root - PolicyDocument: - Version: '2012-10-17' - Statement: - - Effect: Allow - Action: s3:GetBucketAcl - Resource: - Fn::Sub: arn:aws:s3:::${ConfigBucket} - - Effect: Allow - Action: s3:PutObject - Resource: - Fn::Sub: arn:aws:s3:::${ConfigBucket}/AWSLogs/${AWS::AccountId}/* - Condition: - StringEquals: - s3:x-amz-acl: bucket-owner-full-control diff --git a/source/frontend/package-lock.json b/source/frontend/package-lock.json index 42bd5005..065f8ffb 100644 --- a/source/frontend/package-lock.json +++ b/source/frontend/package-lock.json @@ -7546,11 +7546,21 @@ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" }, "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "requires": { - "iconv-lite": "~0.4.13" + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz", + "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } } }, "end-of-stream": { @@ -9968,6 +9978,17 @@ "requires": { "node-fetch": "^1.0.1", "whatwg-fetch": ">=0.10.0" + }, + "dependencies": { + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + } } }, "isstream": { @@ -10698,6 +10719,11 @@ "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" }, + "js-file-download": { + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/js-file-download/-/js-file-download-0.4.12.tgz", + "integrity": "sha512-rML+NkoD08p5Dllpjo0ffy4jRHeY6Zsapvr/W86N7E0yuzAO6qa5X9+xog6zQNlH102J7IXljNY2FtS6Lj3ucg==" + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -11742,13 +11768,9 @@ } }, "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - } + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" }, "node-forge": { "version": "0.9.0", @@ -16614,9 +16636,9 @@ "integrity": "sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==" }, "uglify-js": { - "version": "3.10.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.4.tgz", - "integrity": "sha512-kBFT3U4Dcj4/pJ52vfjCSfyLyvG9VYYuGYPmrPvAxRw/i7xHiT4VvCev+uiEMcEEiu6UNB6KgWmGtSUYIWScbw==", + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.0.tgz", + "integrity": "sha512-e1KQFRCpOxnrJsJVqDUCjURq+wXvIn7cK2sRAx9XL3HYLL9aezOP4Pb1+Y3/o693EPk111Yj2Q+IUXxcpHlygQ==", "dev": true, "optional": true }, diff --git a/source/frontend/package.json b/source/frontend/package.json index d6af2d16..bcf32a6a 100644 --- a/source/frontend/package.json +++ b/source/frontend/package.json @@ -33,6 +33,7 @@ "file-saver": "^2.0.2", "filefy": "^0.1.10", "jquery": "^3.5.1", + "js-file-download": "^0.4.12", "jszip": "^3.2.2", "lodash.difference": "^4.5.0", "lodash.findindex": "^4.6.0", @@ -46,6 +47,7 @@ "lodash.uniqby": "^4.7.0", "match-sorter": "^4.0.2", "material-table": "^1.40.1", + "node-fetch": "^2.6.1", "object-hash": "^2.0.2", "randomcolor": "^0.5.4", "react": "^16.13.1", @@ -62,7 +64,9 @@ "velocityjs": "^1.1.3" }, "resolutions": { - "acorn": "6.4.1" + "acorn": "6.4.1", + "node-fetch": "^2.6.1", + "node-forge": "^0.10.0" }, "scripts": { "preinstall": "npx npm-force-resolutions", diff --git a/source/frontend/public/icons/Amazon-API-Gateway_Endpoint_light-bg.svg b/source/frontend/public/icons/Amazon-API-Gateway_Endpoint_light-bg.svg index bfd46b3f..a20d76bb 100644 --- a/source/frontend/public/icons/Amazon-API-Gateway_Endpoint_light-bg.svg +++ b/source/frontend/public/icons/Amazon-API-Gateway_Endpoint_light-bg.svg @@ -1,4 +1,4 @@ - +
- window.open(templateUrl, '_blank') + label='Save Template' + download={true} + action={async () => + fileDownload( + await downloadCloudFormationTemplateForAccount(), + 'import-account.template' + ) }>
- Ensure you are logged into the account you are importing - before you attempt to deploy the template. + Ensure you are logged into the AWS account you are importing + and have completed the first item in the{' '} + + Post-deployment steps + {' '} + before clicking Deploy Template. +
+
+ Alternatively, You can click Save Template to download the + AWS CloudFormation template and deploy yourself.
diff --git a/source/frontend/src/components/Drawer/Management/AccountManagement/Account/ImportRegion.js b/source/frontend/src/components/Drawer/Management/AccountManagement/Account/ImportRegion.js index 8ef2ef34..139505ed 100644 --- a/source/frontend/src/components/Drawer/Management/AccountManagement/Account/ImportRegion.js +++ b/source/frontend/src/components/Drawer/Management/AccountManagement/Account/ImportRegion.js @@ -2,11 +2,12 @@ import React, { useState, useRef } from 'react'; import { makeStyles } from '@material-ui/core/styles'; import Typography from '@material-ui/core/Typography'; import FormAutoComplete from '../../../../../Utils/Forms/FormAutoComplete'; -import OpenInNew from '@material-ui/icons/OpenInNew'; -import { uploadCloudFormationTemplateForRegion } from './TemplateGenerator'; +import { + downloadCloudFormationTemplateForRegion, + uploadCloudFormationTemplateForRegion, +} from './TemplateGenerator'; import { generateCloudFormationLink } from './CloudFormationURLGenerator'; import { AWSIconButton } from '../../../../../Utils/Forms/AWSIconButton'; -import { useAccountsState } from '../../../../Contexts/AccountsContext'; import { handleResponse, addRegions, @@ -15,6 +16,7 @@ import { } from '../../../../../API/GraphQLHandler'; import CustomSnackbar from '../../../../../Utils/SnackBar/CustomSnackbar'; var findIndex = require('lodash.findindex'); +var fileDownload = require('js-file-download'); const regionMap = [ { id: 'us-east-1', name: 'US East (N. Virginia)' }, @@ -244,6 +246,7 @@ export default ({}) => { window.open( generateCloudFormationLink( @@ -258,16 +261,28 @@ export default ({}) => {
- window.open(templateUrl, '_blank') + label='Save Template' + download={true} + action={async () => + fileDownload( + await downloadCloudFormationTemplateForRegion(), + 'import-region.template' + ) }>
- Ensure you are logged into the account you are importing before - you attempt to deploy the template. + Ensure you are logged into the AWS account you are importing and + have completed the first item in the{' '} + + Post-deployment steps + {' '} + before clicking Deploy Template. +
+
+ Alternatively, You can click Save Template to download the AWS + CloudFormation template and deploy yourself.
diff --git a/source/frontend/src/components/Drawer/Management/AccountManagement/Account/TemplateGenerator.js b/source/frontend/src/components/Drawer/Management/AccountManagement/Account/TemplateGenerator.js index 47dbfdfb..1ab53ede 100644 --- a/source/frontend/src/components/Drawer/Management/AccountManagement/Account/TemplateGenerator.js +++ b/source/frontend/src/components/Drawer/Management/AccountManagement/Account/TemplateGenerator.js @@ -19,6 +19,16 @@ const downloadTemplate = (command) => { return requestWrapper(sendGetRequest, query); }; +export function downloadCloudFormationTemplateForAccount() { + return downloadTemplate('downloadAccountCloudFormation') + .then(template => (template.body)) +} + +export function downloadCloudFormationTemplateForRegion() { + return downloadTemplate('downloadRegionCloudFormation') + .then(template => (template.body)) +} + export function uploadCloudFormationTemplateForAccount() { let templateName; return downloadTemplate('downloadAccountCloudFormation') diff --git a/source/frontend/src/components/Drawer/Maps/ViewSelector/Graph/MapTabController.js b/source/frontend/src/components/Drawer/Maps/ViewSelector/Graph/MapTabController.js index 6b644b1c..f721bc83 100644 --- a/source/frontend/src/components/Drawer/Maps/ViewSelector/Graph/MapTabController.js +++ b/source/frontend/src/components/Drawer/Maps/ViewSelector/Graph/MapTabController.js @@ -122,12 +122,12 @@ export default ({ toggleDialog }) => { aria-label='simple tabs example'> diff --git a/source/frontend/src/tests/API/NodeFactory/NodeFactory.test.js b/source/frontend/src/tests/API/NodeFactory/NodeFactory.test.js index 1e7eb6b8..830911d1 100644 --- a/source/frontend/src/tests/API/NodeFactory/NodeFactory.test.js +++ b/source/frontend/src/tests/API/NodeFactory/NodeFactory.test.js @@ -40,7 +40,7 @@ test('when passing a node that represents an account to our factory it returns a ); }); -test('when passing a node that represents an child to our factory it returns a bounding box node', () => { +test('when passing a node that represents a child to our factory it returns a bounding box node', () => { process.env.PUBLIC_URL = ''; const builtBox = buildBoundingBox(boundingBoxNodeToBuildParent, 'woah-this-is-my-parent', 1); expect(JSON.stringify(builtBox)).toMatch( diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built-parent.json b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built-parent.json new file mode 100644 index 00000000..fc61e788 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built-parent.json @@ -0,0 +1,22 @@ +{ + "edge": false, + "data": { + "id": "ACCOUNT_ID-woah-this-is-my-parent", + "parent": "woah-this-is-my-parent", + "level": 1, + "title": "ACCOUNT_ID", + "label": "ACCOUNT_ID", + "plainLabel": "ACCOUNT_ID", + "type": "ACCOUNT", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["ACCOUNT", "removeAll"] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built.json b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built.json new file mode 100644 index 00000000..bec60088 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-that-was-built.json @@ -0,0 +1,22 @@ +{ + "edge": false, + "data": { + "id": "ACCOUNT_ID", + "level": 0, + "title": "ACCOUNT_ID", + "label": "ACCOUNT_ID", + "plainLabel": "ACCOUNT_ID", + "type": "account", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Cloud-alt_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["account", "removeAll"] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build-parent.json b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build-parent.json new file mode 100644 index 00000000..a865da03 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build-parent.json @@ -0,0 +1,29 @@ +{ + "label": "ACCOUNT_ID", + "type": "ACCOUNT", + "children": [ + { + "label": "REGION", + "type": "REGION", + "children": [ + { + "id": "ID", + "perspectiveBirthDate": "2020-02-25T14:52:27.509Z", + "label": "AWS::Lambda::EnvironmentVariable", + "properties": { + "accountId": "ACCOUNT_ID", + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "perspectiveBirthDate": "DATE", + "linkedLambda": "LINKED_LAMBDA", + "title": "TITLE", + "value": "VALUE", + "resourceType": "TYPE" + }, + "parent": false, + "type": "node" + } + ] + } + ] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build.json b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build.json new file mode 100644 index 00000000..4287703e --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-bounding-box-to-build.json @@ -0,0 +1,65 @@ +{ + "label": "ACCOUNT_ID", + "type": "account", + "children": [ + { + "label": "REGION", + "type": "region", + "children": [ + { + "label": "EnvironmentVariable", + "type": "type", + "children": [ + { + "id": "ID", + "perspectiveBirthDate": "DATE", + "label": "AWS::Lambda::EnvironmentVariable", + "properties": { + "accountId": "ACCOUNT_ID", + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "perspectiveBirthDate": "BIRTH_DATE", + "linkedLambda": "LINKED_LAMBDA", + "title": "TITLE", + "value": "VALUE", + "resourceType": "AWS::Lambda::EnvironmentVariable" + }, + "parent": false, + "type": "node" + } + ] + }, + { + "label": "Method", + "type": "type", + "children": [ + { + "id": "ID", + "perspectiveBirthDate": "DATE", + "label": "AWS::ApiGateway::Method", + "properties": { + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "integrationResponses": "INTEGRATION_RESPONSE", + "title": "TITLE", + "type": "TYPE", + "httpMethod": "METHOD", + "cacheNamespace": "NAMESPACE", + "uri": "URL", + "loggedInURL": "LOGGED_IN_URL", + "timeoutInMillis": "TIMEOUT", + "accountId": "ACCOUNT_ID", + "passthroughBehavior": "PASS_THROUGH_BEHAVIOUR", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "resourceType": "AWS::ApiGateway::Method" + }, + "parent": false, + "type": "node" + } + ] + } + ] + } + ] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built-clicked.json b/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built-clicked.json new file mode 100644 index 00000000..90ee5577 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built-clicked.json @@ -0,0 +1,74 @@ +{ + "edge": false, + "data": { + "parent": "parent", + "level": 0, + "id": "7ca02a916ec816935cda126fddaa351f", + "title": "SECURITY_GROUP", + "label": "SECURITY_GRO...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(173, 35, 17, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "7ca02a916ec816935cda126fddaa351f", + "image": "/icons/AWSSecurityGroup.svg", + "cost": 0, + "private": false, + "resource": { + "id": "RESOURCE_ID", + "name": "RESOURCE_NAME", + "type": "AWS::EC2::SecurityGroup", + "tags": "{}", + "arn": "ARN", + "region": "REGION", + "loggedInURL": "LOGGED_IN_URL", + "loginURL": "LOGIN_URL", + "accountId": "ACCOUNT_ID" + }, + "highlight": true, + "existing": false, + "properties": { + "configurationItemStatus": "ResourceDiscovered", + "resourceId": "RESOURCE_ID", + "configuration": "CONFIGURATION", + "description": "DESCRIPTION", + "title": "SECURITY_GROUP", + "availabilityZone": "Not Applicable", + "loggedInURL": "LOGGED_IN_URL", + "relationships": "RELATIONSHIPS", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "relatedEvents": "[]", + "vpcId": "VPC_ID", + "arn": "ARN", + "awsRegion": "REGION", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "RESOURCE_NAME", + "version": "1.3", + "configurationItemCaptureTime": "CONFIG_CAPTURE_TIME", + "tags": "{}", + "configurationStateId": "CONFIG_STATE_ID", + "accountId": "ACCOUNT_ID", + "groupName": "GROUP_NAME", + "resourceType": "AWS::EC2::SecurityGroup" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + "clicked", + null, + "image", + "selectable", + "hoverover" + ] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built.json b/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built.json new file mode 100644 index 00000000..7c7b8e63 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-that-was-built.json @@ -0,0 +1,74 @@ +{ + "edge": false, + "data": { + "parent": "parent", + "level": 0, + "id": "7ca02a916ec816935cda126fddaa351f", + "title": "SECURITY_GROUP", + "label": "SECURITY_GRO...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(173, 35, 17, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "7ca02a916ec816935cda126fddaa351f", + "image": "/icons/AWSSecurityGroup.svg", + "cost": 0, + "private": false, + "resource": { + "id": "RESOURCE_ID", + "name": "RESOURCE_NAME", + "type": "AWS::EC2::SecurityGroup", + "tags": "{}", + "arn": "ARN", + "region": "REGION", + "loggedInURL": "LOGGED_IN_URL", + "loginURL": "LOGIN_URL", + "accountId": "ACCOUNT_ID" + }, + "highlight": true, + "existing": false, + "properties": { + "configurationItemStatus": "ResourceDiscovered", + "resourceId": "RESOURCE_ID", + "configuration": "CONFIGURATION", + "description": "DESCRIPTION", + "title": "SECURITY_GROUP", + "availabilityZone": "Not Applicable", + "loggedInURL": "LOGGED_IN_URL", + "relationships": "RELATIONSHIPS", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "relatedEvents": "[]", + "vpcId": "VPC_ID", + "arn": "ARN", + "awsRegion": "REGION", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "RESOURCE_NAME", + "version": "1.3", + "configurationItemCaptureTime": "CONFIG_CAPTURE_TIME", + "tags": "{}", + "configurationStateId": "CONFIG_STATE_ID", + "accountId": "ACCOUNT_ID", + "groupName": "GROUP_NAME", + "resourceType": "AWS::EC2::SecurityGroup" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] +} diff --git a/source/frontend/src/tests/API/NodeFactory/data/node-to-build.json b/source/frontend/src/tests/API/NodeFactory/data/node-to-build.json new file mode 100644 index 00000000..d1000598 --- /dev/null +++ b/source/frontend/src/tests/API/NodeFactory/data/node-to-build.json @@ -0,0 +1,39 @@ +{ + "id": "7ca02a916ec816935cda126fddaa351f", + "perspectiveBirthDate": "DATE", + "label": "AWS::EC2::SecurityGroup", + "properties": { + "configurationItemStatus": "ResourceDiscovered", + "resourceId": "RESOURCE_ID", + "configuration": "CONFIGURATION", + "description": "DESCRIPTION", + "title": "SECURITY_GROUP", + "availabilityZone": "Not Applicable", + "loggedInURL": "LOGGED_IN_URL", + "relationships": "RELATIONSHIPS", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "relatedEvents": "[]", + "vpcId": "VPC_ID", + "arn": "ARN", + "awsRegion": "REGION", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "RESOURCE_NAME", + "version": "1.3", + "configurationItemCaptureTime": "CONFIG_CAPTURE_TIME", + "tags": "{}", + "configurationStateId": "CONFIG_STATE_ID", + "accountId": "ACCOUNT_ID", + "groupName": "GROUP_NAME", + "resourceType": "AWS::EC2::SecurityGroup" + }, + "parent": false, + "costData": { + "totalCost": 0, + "currency": "USD", + "startDate": "2020-03-10T13:02:27.588Z", + "endDate": "1970-01-01T00:00:00.000Z" + }, + "type": "node" +} diff --git a/source/frontend/src/tests/API/Processors/data/handle-selected-node-initial.json b/source/frontend/src/tests/API/Processors/data/handle-selected-node-initial.json new file mode 100644 index 00000000..1e00dd72 --- /dev/null +++ b/source/frontend/src/tests/API/Processors/data/handle-selected-node-initial.json @@ -0,0 +1,268 @@ +[ + { + "edge": false, + "data": { + "id": "XXXXXXXXXXXX", + "level": 0, + "title": "XXXXXXXXXXXX", + "label": "XXXXXXXXXXXX", + "plainLabel": "XXXXXXXXXXXX", + "type": "account", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Cloud-alt_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["account", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "global-XXXXXXXXXXXX", + "parent": "XXXXXXXXXXXX", + "level": 1, + "title": "global", + "label": "global", + "plainLabel": "global", + "type": "region", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Region_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["region", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX", + "parent": "global-XXXXXXXXXXXX", + "level": 2, + "title": "CustomerManagedPolicyStatement", + "label": "CustomerManagedPolicyStatement", + "plainLabel": "CustomerManagedPolicyStatement", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg-menu.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX", + "level": 3, + "id": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "title": "TITLE", + "label": "TITLE...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "color": "#1D8102", + "borderStyle": "dotted", + "borderColour": "#1D8102", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "image": "/icons/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg-good.svg", + "cost": 0, + "private": false, + "detailsComponent": { + "key": null, + "ref": null, + "props": { + "title": "Statement", + "statement": { + "Effect": "Allow", + "Action": ["iam:ACTION"], + "Resource": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "Condition": { + "StringLike": { "iam:AWSServiceName": "SERVICE.amazonaws.com" } + } + } + }, + "_owner": null, + "_store": {} + }, + "hoverComponent": { + "key": null, + "ref": null, + "props": { + "statement": { + "Effect": "Allow", + "Action": ["iam:ACTION"], + "Resource": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "Condition": { + "StringLike": { "iam:AWSServiceName": "SERVICE.amazonaws.com" } + } + }, + "resourceStatus": { "status": "status-available", "text": "OK" }, + "actionStatus": { "status": "status-available", "text": "OK" } + }, + "_owner": null, + "_store": {} + }, + "resource": { + "id": "ID|arn:aws:iam::XXXXXXXXXXXX:policy/POLICY|e0b1eddb99b52c4e8813f472e73ba351", + "type": "AWS::IAM::CustomerManagedPolicyStatement", + "region": "global", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "accountId": "XXXXXXXXXXXX", + "resourceId": "ID|arn:aws:iam::XXXXXXXXXXXX:policy/POLICY|e0b1eddb99b52c4e8813f472e73ba351", + "awsRegion": "global", + "perspectiveBirthDate": "2020-09-18T10:32:41.160Z", + "effect": "Allow", + "statement": "{\"Effect\":\"Allow\",\"Action\":[\"iam:ACTION\"],\"Resource\":\"arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE\",\"Condition\":{\"StringLike\":{\"iam:AWSServiceName\":\"SERVICE.amazonaws.com\"}}}", + "resources": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "title": "TITLE", + "actions": "[\"iam:ACTION\"]", + "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": false, + "data": { + "id": "User-global-XXXXXXXXXXXX", + "parent": "global-XXXXXXXXXXXX", + "level": 2, + "title": "User", + "label": "User", + "plainLabel": "User", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/User_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "User-global-XXXXXXXXXXXX", + "level": 3, + "id": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "title": "NAME", + "label": "NAME", + "shape": "image", + "type": "resource", + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "image": "/icons/User_light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "ID", + "name": "NAME", + "type": "AWS::IAM::User", + "tags": "{}", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "region": "global", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "configurationItemStatus": "OK", + "resourceId": "ID", + "configuration": "{\"path\":\"/\",\"userName\":\"NAME\",\"userId\":\"ID\",\"arn\":\"arn:aws:iam::XXXXXXXXXXXX:user/NAME\",\"createDate\":\"2019-11-26T17:05:33.000Z\",\"userPolicyList\":[],\"groupList\":[],\"attachedManagedPolicies\":[{\"policyName\":\"AdministratorAccess\",\"policyArn\":\"arn:aws:iam::aws:policy/AdministratorAccess\"}],\"permissionsBoundary\":null,\"tags\":[]}", + "title": "NAME", + "availabilityZone": "Not Applicable", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "relationships": "[]", + "path": "/", + "perspectiveBirthDate": "2020-09-18T10:30:55.137Z", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "relatedEvents": "[]", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "resourceCreationTime": "2019-11-26T17:05:33.000Z", + "awsRegion": "global", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "NAME", + "version": "1.3", + "configurationItemCaptureTime": "2019-11-26T19:33:01.723Z", + "tags": "{}", + "configurationStateId": "1574796781723", + "accountId": "XXXXXXXXXXXX", + "resourceType": "AWS::IAM::User" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + "clicked", + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": true, + "data": { + "id": "cb4b7c8b64da3b5d48e72a74e1572ec0-4a515e05b94ff6b0a8478efd2aa9f0fb", + "label": "NAME-TITLE", + "source": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "sourceMetadata": { "childIds": [] }, + "target": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "targetMetadata": { "childIds": [] } + }, + "classes": ["highlight"] + } +] diff --git a/source/frontend/src/tests/API/Processors/data/handle-selected-node-response.json b/source/frontend/src/tests/API/Processors/data/handle-selected-node-response.json new file mode 100644 index 00000000..53238ef9 --- /dev/null +++ b/source/frontend/src/tests/API/Processors/data/handle-selected-node-response.json @@ -0,0 +1,275 @@ +{ + "body": [ + { + "edge": false, + "data": { + "id": "XXXXXXXXXXXX", + "level": 0, + "title": "XXXXXXXXXXXX", + "label": "XXXXXXXXXXXX", + "plainLabel": "XXXXXXXXXXXX", + "type": "account", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Cloud-alt_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["account", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "global-XXXXXXXXXXXX", + "parent": "XXXXXXXXXXXX", + "level": 1, + "title": "global", + "label": "global", + "plainLabel": "global", + "type": "region", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Region_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["region", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX", + "parent": "global-XXXXXXXXXXXX", + "level": 2, + "title": "CustomerManagedPolicyStatement", + "label": "CustomerManagedPolicyStatement", + "plainLabel": "CustomerManagedPolicyStatement", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg-menu.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "CustomerManagedPolicyStatement-global-XXXXXXXXXXXX", + "level": 3, + "id": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "title": "TITLE", + "label": "TITLE...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "color": "#1D8102", + "borderStyle": "dotted", + "borderColour": "#1D8102", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "image": "/icons/AWS-Identity-and-Access-Management-IAM_Permissions_CustomerManagedPolicy-light-bg-good.svg", + "cost": 0, + "private": false, + "detailsComponent": { + "key": null, + "ref": null, + "props": { + "title": "Statement", + "statement": { + "Effect": "Allow", + "Action": ["iam:ACTION"], + "Resource": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "Condition": { + "StringLike": { + "iam:AWSServiceName": "SERVICE.amazonaws.com" + } + } + } + }, + "_owner": null, + "_store": {} + }, + "hoverComponent": { + "key": null, + "ref": null, + "props": { + "statement": { + "Effect": "Allow", + "Action": ["iam:ACTION"], + "Resource": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "Condition": { + "StringLike": { + "iam:AWSServiceName": "SERVICE.amazonaws.com" + } + } + }, + "resourceStatus": { "status": "status-available", "text": "OK" }, + "actionStatus": { "status": "status-available", "text": "OK" } + }, + "_owner": null, + "_store": {} + }, + "resource": { + "id": "ID|arn:aws:iam::XXXXXXXXXXXX:policy/POLICY|e0b1eddb99b52c4e8813f472e73ba351", + "type": "AWS::IAM::CustomerManagedPolicyStatement", + "region": "global", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "accountId": "XXXXXXXXXXXX", + "resourceId": "ID|arn:aws:iam::XXXXXXXXXXXX:policy/POLICY|e0b1eddb99b52c4e8813f472e73ba351", + "awsRegion": "global", + "perspectiveBirthDate": "2020-09-18T10:32:41.160Z", + "effect": "Allow", + "statement": "{\"Effect\":\"Allow\",\"Action\":[\"iam:ACTION\"],\"Resource\":\"arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE\",\"Condition\":{\"StringLike\":{\"iam:AWSServiceName\":\"SERVICE.amazonaws.com\"}}}", + "resources": "arn:aws:iam::XXXXXXXXXXXX:role/aws-service-role/SERVICE.amazonaws.com/SERVICE_ROLE", + "title": "TITLE", + "actions": "[\"iam:ACTION\"]", + "resourceType": "AWS::IAM::CustomerManagedPolicyStatement" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": false, + "data": { + "id": "User-global-XXXXXXXXXXXX", + "parent": "global-XXXXXXXXXXXX", + "level": 2, + "title": "User", + "label": "User", + "plainLabel": "User", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/User_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "User-global-XXXXXXXXXXXX", + "level": 3, + "id": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "title": "NAME", + "label": "NAME", + "shape": "image", + "type": "resource", + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "image": "/icons/User_light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "ID", + "name": "NAME", + "type": "AWS::IAM::User", + "tags": "{}", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "region": "global", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "configurationItemStatus": "OK", + "resourceId": "ID", + "configuration": "{\"path\":\"/\",\"userName\":\"NAME\",\"userId\":\"ID\",\"arn\":\"arn:aws:iam::XXXXXXXXXXXX:user/NAME\",\"createDate\":\"2019-11-26T17:05:33.000Z\",\"userPolicyList\":[],\"groupList\":[],\"attachedManagedPolicies\":[{\"policyName\":\"AdministratorAccess\",\"policyArn\":\"arn:aws:iam::aws:policy/AdministratorAccess\"}],\"permissionsBoundary\":null,\"tags\":[]}", + "title": "NAME", + "availabilityZone": "Not Applicable", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "relationships": "[]", + "path": "/", + "perspectiveBirthDate": "2020-09-18T10:30:55.137Z", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "relatedEvents": "[]", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "resourceCreationTime": "2019-11-26T17:05:33.000Z", + "awsRegion": "global", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "NAME", + "version": "1.3", + "configurationItemCaptureTime": "2019-11-26T19:33:01.723Z", + "tags": "{}", + "configurationStateId": "1574796781723", + "accountId": "XXXXXXXXXXXX", + "resourceType": "AWS::IAM::User" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + "clicked", + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": true, + "data": { + "id": "cb4b7c8b64da3b5d48e72a74e1572ec0-4a515e05b94ff6b0a8478efd2aa9f0fb", + "label": "NAME-TITLE", + "source": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "sourceMetadata": { "childIds": [] }, + "target": "4a515e05b94ff6b0a8478efd2aa9f0fb", + "targetMetadata": { "childIds": [] } + }, + "classes": ["highlight"] + } + ], + "error": false +} diff --git a/source/frontend/src/tests/API/Processors/data/process-child-final-array.json b/source/frontend/src/tests/API/Processors/data/process-child-final-array.json new file mode 100644 index 00000000..d36e74da --- /dev/null +++ b/source/frontend/src/tests/API/Processors/data/process-child-final-array.json @@ -0,0 +1,208 @@ +[ + { + "edge": false, + "data": { + "id": "ACCOUNT_ID", + "level": 0, + "title": "ACCOUNT_ID", + "label": "ACCOUNT_ID", + "plainLabel": "ACCOUNT_ID", + "type": "account", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Cloud-alt_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["account", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "REGION-ACCOUNT_ID", + "parent": "ACCOUNT_ID", + "level": 1, + "title": "REGION", + "label": "REGION", + "plainLabel": "REGION", + "type": "region", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Region_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(173, 35, 17, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["region", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "EnvironmentVariable-REGION-ACCOUNT_ID", + "parent": "REGION-ACCOUNT_ID", + "level": 2, + "title": "EnvironmentVariable", + "label": "EnvironmentVariable", + "plainLabel": "EnvironmentVariable", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Env-variable-light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "EnvironmentVariable-REGION-ACCOUNT_ID", + "level": 3, + "id": "ID", + "title": "TITLE", + "label": "TITLE", + "shape": "image", + "type": "resource", + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(173, 35, 17, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "ID", + "image": "/icons/Env-variable-light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "RESOURCE_ID", + "type": "AWS::Lambda::EnvironmentVariable", + "region": "REGION", + "accountId": "ACCOUNT_ID" + }, + "highlight": true, + "existing": false, + "properties": { + "accountId": "ACCOUNT_ID", + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "perspectiveBirthDate": "BIRTH_DATE", + "linkedLambda": "LINKED_LAMBDA", + "title": "TITLE", + "value": "VALUE", + "resourceType": "AWS::Lambda::EnvironmentVariable" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": false, + "data": { + "id": "Method-REGION-ACCOUNT_ID", + "parent": "REGION-ACCOUNT_ID", + "level": 2, + "title": "Method", + "label": "Method", + "plainLabel": "Method", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/API-Gateway-method-Other_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(175, 17, 83, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "Method-REGION-ACCOUNT_ID", + "level": 3, + "id": "ID", + "title": "TITLE", + "label": "TITLE", + "shape": "image", + "type": "resource", + "accountColour": "rgba(6, 31, 112, 0.5)", + "regionColour": "rgba(173, 35, 17, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "ID", + "image": "/icons/API-Gateway-method-Other_light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "RESOURCE_ID", + "type": "AWS::ApiGateway::Method", + "region": "REGION", + "loggedInURL": "LOGGED_IN_URL", + "loginURL": "LOGIN_URL", + "accountId": "ACCOUNT_ID" + }, + "highlight": true, + "existing": false, + "properties": { + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "integrationResponses": "INTEGRATION_RESPONSE", + "title": "TITLE", + "type": "TYPE", + "httpMethod": "METHOD", + "cacheNamespace": "NAMESPACE", + "uri": "URL", + "loggedInURL": "LOGGED_IN_URL", + "timeoutInMillis": "TIMEOUT", + "accountId": "ACCOUNT_ID", + "passthroughBehavior": "PASS_THROUGH_BEHAVIOUR", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "resourceType": "AWS::ApiGateway::Method" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + } +] diff --git a/source/frontend/src/tests/API/Processors/data/process-child-root-node.json b/source/frontend/src/tests/API/Processors/data/process-child-root-node.json new file mode 100644 index 00000000..4287703e --- /dev/null +++ b/source/frontend/src/tests/API/Processors/data/process-child-root-node.json @@ -0,0 +1,65 @@ +{ + "label": "ACCOUNT_ID", + "type": "account", + "children": [ + { + "label": "REGION", + "type": "region", + "children": [ + { + "label": "EnvironmentVariable", + "type": "type", + "children": [ + { + "id": "ID", + "perspectiveBirthDate": "DATE", + "label": "AWS::Lambda::EnvironmentVariable", + "properties": { + "accountId": "ACCOUNT_ID", + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "perspectiveBirthDate": "BIRTH_DATE", + "linkedLambda": "LINKED_LAMBDA", + "title": "TITLE", + "value": "VALUE", + "resourceType": "AWS::Lambda::EnvironmentVariable" + }, + "parent": false, + "type": "node" + } + ] + }, + { + "label": "Method", + "type": "type", + "children": [ + { + "id": "ID", + "perspectiveBirthDate": "DATE", + "label": "AWS::ApiGateway::Method", + "properties": { + "resourceId": "RESOURCE_ID", + "awsRegion": "REGION", + "integrationResponses": "INTEGRATION_RESPONSE", + "title": "TITLE", + "type": "TYPE", + "httpMethod": "METHOD", + "cacheNamespace": "NAMESPACE", + "uri": "URL", + "loggedInURL": "LOGGED_IN_URL", + "timeoutInMillis": "TIMEOUT", + "accountId": "ACCOUNT_ID", + "passthroughBehavior": "PASS_THROUGH_BEHAVIOUR", + "perspectiveBirthDate": "BIRTH_DATE", + "loginURL": "LOGIN_URL", + "resourceType": "AWS::ApiGateway::Method" + }, + "parent": false, + "type": "node" + } + ] + } + ] + } + ] +} diff --git a/source/frontend/src/tests/API/Processors/data/selected-node.json b/source/frontend/src/tests/API/Processors/data/selected-node.json new file mode 100644 index 00000000..b3ed0213 --- /dev/null +++ b/source/frontend/src/tests/API/Processors/data/selected-node.json @@ -0,0 +1,74 @@ +{ + "edge": false, + "data": { + "parent": "User-global-XXXXXXXXXXXX", + "level": 3, + "id": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "title": "NAME", + "label": "NAME", + "shape": "image", + "type": "resource", + "accountColour": "rgba(11, 145, 40, 0.5)", + "regionColour": "rgba(175, 17, 83, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "cb4b7c8b64da3b5d48e72a74e1572ec0", + "image": "/icons/User_light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "ID", + "name": "NAME", + "type": "AWS::IAM::User", + "tags": "{}", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "region": "global", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "configurationItemStatus": "OK", + "resourceId": "ID", + "configuration": "{\"path\":\"/\",\"userName\":\"NAME\",\"userId\":\"ID\",\"arn\":\"arn:aws:iam::XXXXXXXXXXXX:user/NAME\",\"createDate\":\"2019-11-26T17:05:33.000Z\",\"userPolicyList\":[],\"groupList\":[],\"attachedManagedPolicies\":[{\"policyName\":\"AdministratorAccess\",\"policyArn\":\"arn:aws:iam::aws:policy/AdministratorAccess\"}],\"permissionsBoundary\":null,\"tags\":[]}", + "title": "NAME", + "availabilityZone": "Not Applicable", + "loggedInURL": "https://console.aws.amazon.com/iam/home?#/users", + "relationships": "[]", + "path": "/", + "perspectiveBirthDate": "2020-09-18T10:30:55.137Z", + "loginURL": "https://XXXXXXXXXXXX.signin.aws.amazon.com/console/iam?home?#/users", + "relatedEvents": "[]", + "arn": "arn:aws:iam::XXXXXXXXXXXX:user/NAME", + "resourceCreationTime": "2019-11-26T17:05:33.000Z", + "awsRegion": "global", + "supplementaryConfiguration": "{}", + "configurationItemMD5Hash": "", + "resourceName": "NAME", + "version": "1.3", + "configurationItemCaptureTime": "2019-11-26T19:33:01.723Z", + "tags": "{}", + "configurationStateId": "1574796781723", + "accountId": "XXXXXXXXXXXX", + "resourceType": "AWS::IAM::User" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + "clicked", + null, + "image", + "selectable", + "hoverover" + ] +} + \ No newline at end of file diff --git a/source/frontend/src/tests/Utils/Resources/data/db-cluster-costing-test.json b/source/frontend/src/tests/Utils/Resources/data/db-cluster-costing-test.json new file mode 100644 index 00000000..25ab7a15 --- /dev/null +++ b/source/frontend/src/tests/Utils/Resources/data/db-cluster-costing-test.json @@ -0,0 +1,361 @@ +[ + { + "edge": false, + "data": { + "id": "XXXXXXXXXXXX", + "level": 0, + "title": "XXXXXXXXXXXX", + "label": "XXXXXXXXXXXX - $0", + "plainLabel": "XXXXXXXXXXXX", + "type": "account", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/AWS-Cloud-alt_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(178, 121, 8, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["account", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "eu-west-1-XXXXXXXXXXXX", + "parent": "XXXXXXXXXXXX", + "level": 1, + "title": "eu-west-1", + "label": "eu-west-1 - $0", + "plainLabel": "eu-west-1", + "type": "region", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Region_light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(137, 46, 6, 0.5)", + "regionColour": "rgba(79, 16, 163, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["region", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "eu-west-1b-eu-west-1-XXXXXXXXXXXX", + "parent": "eu-west-1-XXXXXXXXXXXX", + "level": 2, + "title": "eu-west-1b", + "label": "eu-west-1b - $0", + "plainLabel": "eu-west-1b", + "type": "availabilityZone", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/availabilityZone.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(137, 46, 6, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["availabilityZone", "removeAll"] + }, + { + "edge": false, + "data": { + "id": "DBInstance-eu-west-1b-eu-west-1-XXXXXXXXXXXX", + "parent": "eu-west-1b-eu-west-1-XXXXXXXXXXXX", + "level": 3, + "title": "DBInstance", + "label": "1x DBInstance - $0", + "plainLabel": "DBInstance", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Amazon-RDS_Amazon-RDS_instance_light-bg-menu.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(137, 46, 6, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "DBInstance-eu-west-1b-eu-west-1-XXXXXXXXXXXX", + "level": 4, + "id": "ebc5cd4c047867d5ab6154d07ff468f9", + "title": "TITLE", + "label": "TITLE...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(178, 121, 8, 0.5)", + "regionColour": "rgba(79, 16, 163, 0.5)", + "color": "#1D8102", + "borderStyle": "dotted", + "borderColour": "#1D8102", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "ebc5cd4c047867d5ab6154d07ff468f9", + "state": { + "status": "status-available", + "text": "available", + "color": "#1D8102" + }, + "image": "/icons/Amazon-Neptune_light-bg.svg", + "cost": 62.98, + "private": false, + "detailsComponent": { + "key": null, + "ref": null, + "props": { + "title": "Instance Details", + "configuration": "CONFIG" + }, + "_owner": null, + "_store": {} + }, + "resource": { + "id": "TITLE", + "name": "NAME", + "type": "AWS::RDS::DBInstance", + "tags": "TAGS", + "arn": "arn:aws:rds:eu-west-1:XXXXXXXXXXXX:db:NAME", + "region": "eu-west-1", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": false, + "data": { + "id": "EnvironmentVariable-eu-west-1-XXXXXXXXXXXX", + "parent": "eu-west-1-XXXXXXXXXXXX", + "level": 2, + "title": "EnvironmentVariable", + "label": "1x EnvironmentVariable - $0", + "plainLabel": "EnvironmentVariable", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Env-variable-light-bg.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(137, 46, 6, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "EnvironmentVariable-eu-west-1-XXXXXXXXXXXX", + "level": 3, + "id": "8c9c85e4ed8893d29378b98075d60fc6", + "title": "neptuneConnectURL:CLUSTER_ID.cluster-ADDRESS", + "label": "neptuneConne...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(178, 121, 8, 0.5)", + "regionColour": "rgba(79, 16, 163, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "8c9c85e4ed8893d29378b98075d60fc6", + "image": "/icons/Env-variable-light-bg.svg", + "cost": 0, + "private": false, + "resource": { + "id": "neptuneConnectURL_CLUSTER_ID.cluster-ADDRESS_XXXXXXXXXXXX_eu-west-1", + "type": "AWS::Lambda::EnvironmentVariable", + "region": "eu-west-1", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "accountId": "XXXXXXXXXXXX", + "resourceId": "neptuneConnectURL_CLUSTER_ID.cluster-ADDRESS_XXXXXXXXXXXX_eu-west-1", + "awsRegion": "eu-west-1", + "perspectiveBirthDate": "2020-02-25T14:52:27.455Z", + "linkedLambda": "gremlin", + "title": "neptuneConnectURL:CLUSTER_ID.cluster-ADDRESS", + "value": "CLUSTER_ID.cluster-ADDRESS", + "resourceType": "AWS::Lambda::EnvironmentVariable" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + null, + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": false, + "data": { + "id": "DBCluster-eu-west-1-XXXXXXXXXXXX", + "parent": "eu-west-1-XXXXXXXXXXXX", + "level": 2, + "title": "DBCluster", + "label": "1x DBCluster - $0", + "plainLabel": "DBCluster", + "type": "type", + "borderStyle": "solid", + "color": "#fff", + "borderColour": "#AAB7B8", + "opacity": "0", + "image": "/icons/Amazon-DBCluster.svg", + "cost": 0, + "children": true, + "accountColour": "rgba(137, 46, 6, 0.5)", + "regionColour": "rgba(9, 86, 99, 0.5)", + "aZColour": "#00A1C9" + }, + "classes": ["type", "removeAll"] + }, + { + "edge": false, + "data": { + "parent": "DBCluster-eu-west-1-XXXXXXXXXXXX", + "level": 3, + "id": "d9842531e9f0b7d801694190aa606e22", + "title": "CLUSTER_ID", + "label": "perspective-...", + "shape": "image", + "type": "resource", + "accountColour": "rgba(178, 121, 8, 0.5)", + "regionColour": "rgba(79, 16, 163, 0.5)", + "color": "#fff", + "borderStyle": "solid", + "borderColour": "#545B64", + "borderOpacity": 0.25, + "borderSize": 1, + "opacity": "0", + "clickedId": "d9842531e9f0b7d801694190aa606e22", + "image": "/icons/Amazon-DBCluster.svg", + "cost": 0, + "private": false, + "resource": { + "id": "CLUSTER_ID_eu-west-1_XXXXXXXXXXXX", + "type": "AWS::RDS::DBCluster", + "arn": "arn:aws:rds:eu-west-1:XXXXXXXXXXXX:cluster:CLUSTER_ID_eu-west-1_XXXXXXXXXXXX", + "region": "eu-west-1", + "accountId": "XXXXXXXXXXXX" + }, + "highlight": true, + "existing": false, + "properties": { + "temporary": "TEMPORARY", + "resourceId": "CLUSTER_ID_eu-west-1_XXXXXXXXXXXX", + "vpcSecurityGroups_Status_2": "active", + "associatedRoles": "[]", + "dbClusterMembers_PromotionTier_4": "1", + "availabilityZones": "eu-west-1c,eu-west-1a,eu-west-1b", + "title": "CLUSTER_ID", + "preferredBackupWindow": "02:00-03:00", + "deletionProtection": "false", + "dbClusterIdentifier": "CLUSTER_ID", + "dbClusterMembers": "CLUSTER_MEMBERS", + "endpoint": "CLUSTER_ID.cluster-ADDRESS", + "perspectiveBirthDate": "2020-02-25T14:52:08.580Z", + "engineMode": "provisioned", + "engine": "neptune", + "readerEndpoint": "CLUSTER_ID.cluster-ro-ADDRESS", + "earliestRestorableTime": "2020-01-28T12:08:07.818Z", + "arn": "arn:aws:rds:eu-west-1:XXXXXXXXXXXX:cluster:CLUSTER_ID_eu-west-1_XXXXXXXXXXXX", + "clusterCreateTime": "2020-01-28T12:07:32.983Z", + "dbClusterMembers_IsClusterWriter_2": "true", + "engineVersion": "1.0.2.1", + "awsRegion": "eu-west-1", + "multiAZ": "false", + "dbClusterMembers_DBClusterParameterGroupStatus_3": "in-sync", + "storageEncrypted": "true", + "vpcSecurityGroups_VpcSecurityGroupId_1": "SG_NAME", + "dBSubnetGroup": "SBNET_GRP", + "vpcSecurityGroups": "[{\"VpcSecurityGroupId\":\"SG_NAME\",\"Status\":\"active\"}]", + "httpEndpointEnabled": "false", + "hostedZoneId": "HOSTED_ZONE", + "accountId": "XXXXXXXXXXXX", + "dbClusterArn": "arn:aws:rds:eu-west-1:XXXXXXXXXXXX:cluster:CLUSTER_ID", + "port": "PORT", + "dbClusterMembers_DBInstanceIdentifier_1": "NAME", + "resourceType": "AWS::RDS::DBCluster" + } + }, + "classes": [ + "resource", + null, + "highlight", + null, + "clicked", + null, + "image", + "selectable", + "hoverover" + ] + }, + { + "edge": true, + "data": { + "id": "d9842531e9f0b7d801694190aa606e22-ebc5cd4c047867d5ab6154d07ff468f9", + "label": "CLUSTER_ID-TITLE", + "source": "d9842531e9f0b7d801694190aa606e22", + "sourceMetadata": { "childIds": [] }, + "target": "ebc5cd4c047867d5ab6154d07ff468f9", + "targetMetadata": { "childIds": [] } + }, + "classes": ["highlight"] + }, + { + "edge": true, + "data": { + "id": "d9842531e9f0b7d801694190aa606e22-8c9c85e4ed8893d29378b98075d60fc6", + "label": "CLUSTER_ID-neptuneConnectURL:CLUSTER_ID.cluster-ADDRESS", + "source": "d9842531e9f0b7d801694190aa606e22", + "sourceMetadata": { "childIds": [] }, + "target": "8c9c85e4ed8893d29378b98075d60fc6", + "targetMetadata": { "childIds": [] } + }, + "classes": ["highlight"] + } +] diff --git a/source/frontend/src/tests/Utils/Resources/data/db-instance-node.js b/source/frontend/src/tests/Utils/Resources/data/db-instance-node.js new file mode 100644 index 00000000..4c6c9a92 --- /dev/null +++ b/source/frontend/src/tests/Utils/Resources/data/db-instance-node.js @@ -0,0 +1,45 @@ +export const nodeWithCost = { + id: 'ebc5cd4c047867d5ab6154d07ff468f9', + perspectiveBirthDate: '2020-02-25T14:50:10.708Z', + label: 'AWS::RDS::DBInstance', + properties: { + + }, + parent: false, + costData: { + totalCost: 62.97600000000005, + currency: 'USD', + startDate: '2020-02-28T00:00:00.000Z', + endDate: '2020-03-05T20:00:00.000Z', + }, + type: 'node', +}; + +export const nodeWithCostButIgnoreFlagTrue = { + id: 'ebc5cd4c047867d5ab6154d07ff468f9', + perspectiveBirthDate: '2020-02-25T14:50:10.708Z', + label: 'AWS::RDS::DBInstance', + properties: { + + }, + parent: false, + costData: { + ignore: true, + totalCost: 62.97600000000005, + currency: 'USD', + startDate: '2020-02-28T00:00:00.000Z', + endDate: '2020-03-05T20:00:00.000Z', + }, + type: 'node', +}; + +export const nodeWithoutCost = { + id: 'ebc5cd4c047867d5ab6154d07ff468f9', + perspectiveBirthDate: '2020-02-25T14:50:10.708Z', + label: 'AWS::RDS::DBInstance', + properties: { + + }, + parent: false, + type: 'node', +}; diff --git a/source/frontend/src/tests/components/Drawer/ResourceSelector/data/expectedResourceMenu.json b/source/frontend/src/tests/components/Drawer/ResourceSelector/data/expectedResourceMenu.json new file mode 100644 index 00000000..a7ac4773 --- /dev/null +++ b/source/frontend/src/tests/components/Drawer/ResourceSelector/data/expectedResourceMenu.json @@ -0,0 +1,37 @@ +[ + + { + "key": "AutoScaling", + "label": "AutoScaling (2)", + "nodes": [ + { + "key": "AutoScalingGroup", + "label": "AutoScalingGroup (2)", + "count": 2, + "nodes": [ + { + "key": "40440fd8608ed34596f94b032f5dc9b5", + "label": "an-asg", + "fullLabel": "an-asg", + "filter": { + "resourceId": "40440fd8608ed34596f94b032f5dc9b5", + "resourceType": "AWS::AutoScaling::AutoScalingGroup" + }, + "nodeId": "40440fd8608ed34596f94b032f5dc9b5" + }, + { + "key": "d9bd2a470e8acc641b5e260fd27b06fc", + "label": "an-autoscaling-group", + "fullLabel": "an-autoscaling-group", + "filter": { + "resourceId": "d9bd2a470e8acc641b5e260fd27b06fc", + "resourceType": "AWS::AutoScaling::AutoScalingGroup" + }, + "nodeId": "d9bd2a470e8acc641b5e260fd27b06fc" + } + ], + "filter": { "resourceType": "AWS::AutoScaling::AutoScalingGroup" } + } + ] + } +] diff --git a/source/frontend/src/tests/components/Drawer/ResourceSelector/data/resources.json b/source/frontend/src/tests/components/Drawer/ResourceSelector/data/resources.json new file mode 100644 index 00000000..99cb1d11 --- /dev/null +++ b/source/frontend/src/tests/components/Drawer/ResourceSelector/data/resources.json @@ -0,0 +1,38 @@ +[ + { + "nodes": [ + { + "id": "40440fd8608ed34596f94b032f5dc9b5", + "label": "AWS::AutoScaling::AutoScalingGroup", + "title": "an-asg", + "accountId": "XXXXXXXXXXXX", + "region": "eu-west-1", + "mainType": "AutoScaling", + "subType": "AutoScalingGroup", + "configuration": "CONFIG" + }, + { + "id": "d9bd2a470e8acc641b5e260fd27b06fc", + "label": "AWS::AutoScaling::AutoScalingGroup", + "title": "an-autoscaling-group", + "accountId": "XXXXXXXXXXXX", + "region": "eu-west-1", + "mainType": "AutoScaling", + "subType": "AutoScalingGroup", + "configuration": "CONFIG" + } + ], + "metaData": { + "resourceCount": 2, + "resourceTypes": [ + { + "AWS::AutoScaling::AutoScalingGroup": 2 + } + ] + }, + "query": { + "command": "getAllResources", + "data": {} + } + } +]