You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
"""
|
|
|
|
import os
|
|
|
|
from aws_cdk import (
|
|
core
|
|
)
|
|
|
|
from constants import Constants
|
|
from core.aws_core import AWSCore
|
|
from example.example_resources_stack import ExampleResources
|
|
|
|
"""Configuration"""
|
|
REGION = os.environ.get('O3DE_AWS_DEPLOY_REGION', os.environ.get('CDK_DEFAULT_REGION'))
|
|
ACCOUNT = os.environ.get('O3DE_AWS_DEPLOY_ACCOUNT', os.environ.get('CDK_DEFAULT_ACCOUNT'))
|
|
|
|
# Set the common prefix to group stacks in a project together.
|
|
PROJECT_NAME = os.environ.get('O3DE_AWS_PROJECT_NAME', f'O3DE-AWS-PROJECT').upper()
|
|
|
|
# The name of this feature
|
|
FEATURE_NAME = 'Core'
|
|
|
|
# The name of this CDK application
|
|
PROJECT_FEATURE_NAME = f'{PROJECT_NAME}-{FEATURE_NAME}'
|
|
|
|
"""End of Configuration"""
|
|
|
|
# Set-up regions to deploy core stack to, or use default if not set
|
|
env = core.Environment(account=ACCOUNT, region=REGION)
|
|
|
|
app = core.App()
|
|
|
|
core = AWSCore(
|
|
app,
|
|
id_=f'{PROJECT_FEATURE_NAME}-Construct',
|
|
project_name=PROJECT_NAME,
|
|
feature_name=FEATURE_NAME,
|
|
env=env
|
|
)
|
|
|
|
# Below is the Core example stack which is provided for working with AWSCore ScriptCanvas examples.
|
|
# It also provided as an example how to reference properties across stacks in the same CDK applications
|
|
# Note: This will make the consuming stack a dependent stack on core
|
|
# CDK will deploy the dependent stack first and then the core stack
|
|
# See https://docs.aws.amazon.com/cdk/latest/guide/resources.html#resource_stack
|
|
core_properties = core.properties
|
|
|
|
example = ExampleResources(
|
|
app,
|
|
id_=f'{PROJECT_FEATURE_NAME}-Example-{env.region}',
|
|
props_=core_properties,
|
|
project_name=f'{PROJECT_NAME}',
|
|
feature_name=FEATURE_NAME,
|
|
tags={Constants.O3DE_PROJECT_TAG_NAME: PROJECT_NAME, Constants.O3DE_FEATURE_TAG_NAME: FEATURE_NAME},
|
|
env=env
|
|
)
|
|
|
|
app.synth()
|