mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-14 01:42:49 -04:00
🧆 update readme:
This commit is contained in:
parent
60aae380b2
commit
4a5d6f56a6
245 changed files with 20300 additions and 6 deletions
0
cdk/python/VPC_example/vpc_example/__init__.py
Normal file
0
cdk/python/VPC_example/vpc_example/__init__.py
Normal file
8
cdk/python/VPC_example/vpc_example/vpc_example_stack.py
Normal file
8
cdk/python/VPC_example/vpc_example/vpc_example_stack.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from aws_cdk import core, aws_ec2
|
||||
|
||||
class VpcExampleStack(core.Stack):
|
||||
|
||||
def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
|
||||
super().__init__(scope, id, **kwargs)
|
||||
|
||||
vpc = aws_ec2.Vpc(self, "MiaVPCTest", cidr="10.0.0.0/16", max_azs=3)
|
Loading…
Add table
Add a link
Reference in a new issue