automated terminal push
This commit is contained in:
23
app.py
Normal file
23
app.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
AWS CDK Production-like Environment Demo
|
||||
Using Native American tribes and deities naming convention
|
||||
"""
|
||||
|
||||
import aws_cdk as cdk
|
||||
from production_stack import ProductionStack
|
||||
|
||||
app = cdk.App()
|
||||
|
||||
# Create the production stack with Native American naming
|
||||
ProductionStack(
|
||||
app,
|
||||
"ManitouProductionStack", # Manitou - Great Spirit in Algonquian traditions
|
||||
env=cdk.Environment(
|
||||
account=app.node.try_get_context("account"),
|
||||
region="us-east-2"
|
||||
),
|
||||
description="Production-like AWS environment with Cherokee naming convention"
|
||||
)
|
||||
|
||||
app.synth()
|
Reference in New Issue
Block a user