├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── egress_vpc-tg-demo.ts ├── cdk.json ├── img ├── AWS_Systems_Manager_Session_Manager.png ├── AWS_Systems_Manager_start_session.png └── egressVPC_TG_CDK.png ├── lib └── egress_vpc-tg-demo-stack.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/README.md -------------------------------------------------------------------------------- /bin/egress_vpc-tg-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/bin/egress_vpc-tg-demo.ts -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": "npx ts-node bin/egress_vpc-tg-demo.ts" 3 | } 4 | -------------------------------------------------------------------------------- /img/AWS_Systems_Manager_Session_Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/img/AWS_Systems_Manager_Session_Manager.png -------------------------------------------------------------------------------- /img/AWS_Systems_Manager_start_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/img/AWS_Systems_Manager_start_session.png -------------------------------------------------------------------------------- /img/egressVPC_TG_CDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/img/egressVPC_TG_CDK.png -------------------------------------------------------------------------------- /lib/egress_vpc-tg-demo-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/lib/egress_vpc-tg-demo-stack.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-transit-gateway-egress-vpc-pattern/HEAD/tsconfig.json --------------------------------------------------------------------------------