cdk-factory 0.19.9__tar.gz → 0.19.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/PKG-INFO +1 -1
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/pyproject.toml +1 -1
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_edge.py +17 -3
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/cloudfront/cloudfront_stack.py +14 -11
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecs/ecs_service_stack.py +34 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/lambda_edge/lambda_edge_stack.py +141 -50
- cdk_factory-0.19.18/src/cdk_factory/version.py +1 -0
- cdk_factory-0.19.9/src/cdk_factory/version.py +0 -1
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/.gitignore +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/.windsurfrules +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/LICENSE +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/REFACTORING_PLAN.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/archive/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/archive/migrate_to_enhanced_ssm.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/json-imports/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/separate-api-gateway/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/separate-api-gateway/api-gateway-stack.json +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/separate-api-gateway/config.json +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/separate-api-gateway/lambda-stack.json +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/mypy.ini +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/publish_to_pypi.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/publish_to_pypi.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/pysetup.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/pysetup.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/requirements.dev.txt +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/requirements.tests.txt +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/requirements.txt +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/run-checks.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/run-tests-clean-venv.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/run-tests.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/scripts/cloudfront-cleanup.sh +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/app.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/builds/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/cdk.json +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/cli.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/commands/command_loader.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/base_config.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/cdk_config.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/deployment.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/deployment_wave.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/devops.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/enhanced_base_config.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/enhanced_ssm_config.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/management.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/pipeline.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/pipeline_stage.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/_resources.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/acm.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/api_gateway.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/apigateway_route_config.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/auto_scaling.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/cloudfront.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/cloudwatch_widget.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/code_artifact.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/code_artifact_login.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/code_repository.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/cognito.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/docker.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/dynamodb.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/ecr.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/ecs_cluster.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/ecs_service.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/exisiting.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_function.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_layers.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_triggers.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/load_balancer.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/monitoring.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/rds.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/resource_mapping.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/resource_naming.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/resource_types.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/route53.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/route53_hosted_zone.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/rum.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/s3.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/security_group.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/security_group_full_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/sqs.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/vpc.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/workload.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/cloudfront/cloudfront_distribution_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/ecr/ecr_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/lambdas/lambda_function_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/lambdas/lambda_function_docker_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/lambdas/lambda_function_role_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/lambdas/policies/policy_docs.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/lambdas/policies/policy_statements.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/s3_buckets/s3_bucket_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/s3_buckets/s3_bucket_replication_destination_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/s3_buckets/s3_bucket_replication_source_construct.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/sqs/policies/sqs_policies.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/istack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/live_ssm_resolver.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/networked_stack_mixin.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/standardized_ssm_mixin.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/vpc_provider_mixin.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/lambdas/edge/ip_gate/handler.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/lambdas/health_handler.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/pipeline/path_utils.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/pipeline/pipeline_factory.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/pipeline/security/policies.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/pipeline/security/roles.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/pipeline/stage.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack/istack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack/stack_factory.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack/stack_module_loader.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack/stack_module_registry.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack/stack_modules.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/acm/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/acm/acm_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/api_gateway/api_gateway_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/auto_scaling/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/auto_scaling/auto_scaling_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/aws_lambdas/lambda_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/buckets/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/buckets/bucket_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/cloudfront/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/code_artifact/code_artifact_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/cognito/cognito_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/dynamodb/dynamodb_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecr/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecr/ecr_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecs/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecs/ecs_cluster_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/lambda_edge/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/load_balancer/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/load_balancer/load_balancer_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/monitoring/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/monitoring/monitoring_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/rds/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/rds/rds_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/route53/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/route53/route53_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/rum/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/rum/rum_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/security_group/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/security_group/security_group_full_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/security_group/security_group_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/simple_queue_service/sqs_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/stack_base.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/vpc/__init__.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/vpc/vpc_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/websites/static_website_stack.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stages/websites/static_website_stage.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/templates/README.md +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/templates/app.py.template +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/templates/cdk.json.template +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/api_gateway_integration_utility.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/commandline_args.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/configuration_loader.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/docker_utilities.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/environment_services.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/file_operations.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/git_utilities.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/json_loading_utility.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/lambda_function_utilities.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/os_execute.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utils/api_gateway_utilities.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/validation/config_validator.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/workload/workload_factory.py +0 -0
- {cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/handlers/test/handler.py +0 -0
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_edge.py
RENAMED
|
@@ -49,10 +49,24 @@ class LambdaEdgeConfig(EnhancedBaseConfig):
|
|
|
49
49
|
|
|
50
50
|
@property
|
|
51
51
|
def timeout(self) -> int:
|
|
52
|
-
"""Timeout in seconds
|
|
52
|
+
"""Timeout in seconds
|
|
53
|
+
viewer-request: 5s
|
|
54
|
+
viewer-response: 5s
|
|
55
|
+
---
|
|
56
|
+
origin-request: 30s
|
|
57
|
+
origin-response: 30s
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
"""
|
|
53
61
|
timeout = int(self._config.get("timeout", 5))
|
|
54
|
-
|
|
55
|
-
|
|
62
|
+
|
|
63
|
+
event_type = self.event_type
|
|
64
|
+
if event_type == "viewer-request" or event_type == "viewer-response":
|
|
65
|
+
if timeout > 5:
|
|
66
|
+
raise ValueError("Lambda@Edge viewer timeout cannot exceed 5 seconds. Value was set to {}".format(timeout))
|
|
67
|
+
else:
|
|
68
|
+
if timeout > 30:
|
|
69
|
+
raise ValueError("Lambda@Edge origin timeout cannot exceed 30 seconds. Value was set to {}".format(timeout))
|
|
56
70
|
return timeout
|
|
57
71
|
|
|
58
72
|
@property
|
|
@@ -145,7 +145,7 @@ class CloudFrontStack(IStack):
|
|
|
145
145
|
return
|
|
146
146
|
|
|
147
147
|
# Check if certificate ARN is provided
|
|
148
|
-
cert_arn = cert_config.get("arn")
|
|
148
|
+
cert_arn = self.resolve_ssm_value(self, cert_config.get("arn"), "CertificateARN")
|
|
149
149
|
if cert_arn:
|
|
150
150
|
self.certificate = acm.Certificate.from_certificate_arn(
|
|
151
151
|
self, "Certificate", certificate_arn=cert_arn
|
|
@@ -173,14 +173,14 @@ class CloudFrontStack(IStack):
|
|
|
173
173
|
"CloudFront certificates must be created in us-east-1"
|
|
174
174
|
)
|
|
175
175
|
return
|
|
176
|
-
|
|
176
|
+
|
|
177
177
|
# Create the certificate
|
|
178
178
|
# Get hosted zone from SSM imports
|
|
179
179
|
hosted_zone_id = cert_config.get("hosted_zone_id")
|
|
180
180
|
hosted_zone = route53.HostedZone.from_hosted_zone_id(
|
|
181
181
|
self, "HostedZone", hosted_zone_id
|
|
182
182
|
)
|
|
183
|
-
|
|
183
|
+
|
|
184
184
|
self.certificate = acm.Certificate(
|
|
185
185
|
self,
|
|
186
186
|
"Certificate",
|
|
@@ -223,7 +223,9 @@ class CloudFrontStack(IStack):
|
|
|
223
223
|
|
|
224
224
|
def _create_custom_origin(self, config: Dict[str, Any]) -> cloudfront.IOrigin:
|
|
225
225
|
"""Create custom origin (ALB, API Gateway, etc.)"""
|
|
226
|
-
domain_name = self.resolve_ssm_value(
|
|
226
|
+
domain_name = self.resolve_ssm_value(
|
|
227
|
+
self, config.get("domain_name"), config.get("domain_name")
|
|
228
|
+
)
|
|
227
229
|
origin_id = config.get("id")
|
|
228
230
|
|
|
229
231
|
if not domain_name:
|
|
@@ -297,21 +299,22 @@ class CloudFrontStack(IStack):
|
|
|
297
299
|
|
|
298
300
|
def _create_s3_origin(self, config: Dict[str, Any]) -> cloudfront.IOrigin:
|
|
299
301
|
"""Create S3 origin"""
|
|
300
|
-
bucket_name = self.resolve_ssm_value(
|
|
301
|
-
|
|
302
|
+
bucket_name = self.resolve_ssm_value(
|
|
303
|
+
self, config.get("bucket_name"), config.get("bucket_name")
|
|
304
|
+
)
|
|
302
305
|
|
|
303
306
|
origin_path = config.get("origin_path", "")
|
|
304
|
-
|
|
307
|
+
|
|
305
308
|
if not bucket_name:
|
|
306
309
|
raise ValueError("S3 origin requires 'bucket_name' configuration")
|
|
307
|
-
|
|
310
|
+
|
|
308
311
|
# For S3 origins, we need to import the bucket by name
|
|
309
312
|
bucket = s3.Bucket.from_bucket_name(
|
|
310
313
|
self,
|
|
311
314
|
id=f"S3OriginBucket-{config.get('id', 'unknown')}",
|
|
312
|
-
bucket_name=bucket_name
|
|
315
|
+
bucket_name=bucket_name,
|
|
313
316
|
)
|
|
314
|
-
|
|
317
|
+
|
|
315
318
|
# Create S3 origin with OAC (Origin Access Control) for security
|
|
316
319
|
origin = origins.S3BucketOrigin.with_origin_access_control(
|
|
317
320
|
bucket,
|
|
@@ -321,7 +324,7 @@ class CloudFrontStack(IStack):
|
|
|
321
324
|
cloudfront.AccessLevel.LIST,
|
|
322
325
|
],
|
|
323
326
|
)
|
|
324
|
-
|
|
327
|
+
|
|
325
328
|
return origin
|
|
326
329
|
|
|
327
330
|
def _create_distribution(self) -> None:
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecs/ecs_service_stack.py
RENAMED
|
@@ -226,6 +226,9 @@ class EcsServiceStack(IStack, VPCProviderMixin, StandardizedSsmMixin):
|
|
|
226
226
|
"CloudWatchAgentServerPolicy"
|
|
227
227
|
)
|
|
228
228
|
)
|
|
229
|
+
|
|
230
|
+
# add any custom policies
|
|
231
|
+
self._add_custom_task_policies(task_role)
|
|
229
232
|
|
|
230
233
|
# Create task definition based on launch type
|
|
231
234
|
if self.ecs_config.launch_type == "EC2":
|
|
@@ -257,6 +260,37 @@ class EcsServiceStack(IStack, VPCProviderMixin, StandardizedSsmMixin):
|
|
|
257
260
|
# Add containers
|
|
258
261
|
self._add_containers_to_task()
|
|
259
262
|
|
|
263
|
+
def _add_custom_task_policies(self, task_role: iam.Role) -> None:
|
|
264
|
+
"""
|
|
265
|
+
Add custom task policies to the task definition.
|
|
266
|
+
"""
|
|
267
|
+
for policy in self.ecs_config.task_definition.get("policies", []):
|
|
268
|
+
|
|
269
|
+
effect = policy.get("effect", "Allow")
|
|
270
|
+
action = policy.get("action", None)
|
|
271
|
+
actions = policy.get("actions", [])
|
|
272
|
+
if action:
|
|
273
|
+
actions.append(action)
|
|
274
|
+
resources = policy.get("resources", [])
|
|
275
|
+
resource = policy.get("resource", None)
|
|
276
|
+
if resource:
|
|
277
|
+
resources.append(resource)
|
|
278
|
+
|
|
279
|
+
if effect == "Allow" and actions:
|
|
280
|
+
effect = iam.Effect.ALLOW
|
|
281
|
+
if effect == "Deny" and actions:
|
|
282
|
+
effect = iam.Effect.DENY
|
|
283
|
+
|
|
284
|
+
sid = policy.get("sid", None)
|
|
285
|
+
task_role.add_to_policy(
|
|
286
|
+
iam.PolicyStatement(
|
|
287
|
+
effect=effect,
|
|
288
|
+
actions=actions,
|
|
289
|
+
resources=resources,
|
|
290
|
+
sid=sid,
|
|
291
|
+
)
|
|
292
|
+
)
|
|
293
|
+
|
|
260
294
|
def _add_volumes_to_task(self) -> None:
|
|
261
295
|
"""
|
|
262
296
|
Add volumes to the task definition.
|
|
@@ -100,6 +100,9 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
100
100
|
# Create version (required for Lambda@Edge)
|
|
101
101
|
self._create_function_version(function_name)
|
|
102
102
|
|
|
103
|
+
# Configure edge log retention for regional logs
|
|
104
|
+
self._configure_edge_log_retention(function_name)
|
|
105
|
+
|
|
103
106
|
# Add outputs
|
|
104
107
|
self._add_outputs(function_name)
|
|
105
108
|
|
|
@@ -245,19 +248,12 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
245
248
|
self.edge_config.runtime,
|
|
246
249
|
_lambda.Runtime.PYTHON_3_11
|
|
247
250
|
)
|
|
248
|
-
|
|
249
|
-
# Lambda@Edge does NOT support environment variables
|
|
250
|
-
# Configuration must be handled via:
|
|
251
|
-
# 1. Hardcoded in the function code
|
|
252
|
-
# 2. Fetched from SSM Parameter Store at runtime
|
|
253
|
-
# 3. Other configuration mechanisms
|
|
254
|
-
|
|
251
|
+
|
|
255
252
|
# Log warning if environment variables are configured
|
|
256
253
|
if self.edge_config.environment:
|
|
257
254
|
logger.warning(
|
|
258
255
|
f"Lambda@Edge function '{function_name}' has environment variables configured, "
|
|
259
|
-
"but Lambda@Edge does not support environment variables. "
|
|
260
|
-
"The function must fetch these values from SSM Parameter Store at runtime."
|
|
256
|
+
"but Lambda@Edge does not support environment variables. The function must fetch these values from SSM Parameter Store at runtime."
|
|
261
257
|
)
|
|
262
258
|
for key, value in self.edge_config.environment.items():
|
|
263
259
|
logger.warning(f" - {key}: {value}")
|
|
@@ -268,7 +264,8 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
268
264
|
f"{function_name}-Role",
|
|
269
265
|
assumed_by=iam.CompositePrincipal(
|
|
270
266
|
iam.ServicePrincipal("lambda.amazonaws.com"),
|
|
271
|
-
iam.ServicePrincipal("edgelambda.amazonaws.com")
|
|
267
|
+
iam.ServicePrincipal("edgelambda.amazonaws.com"),
|
|
268
|
+
iam.ServicePrincipal("cloudfront.amazonaws.com") # Add CloudFront service principal
|
|
272
269
|
),
|
|
273
270
|
description=f"Execution role for Lambda@Edge function {function_name}",
|
|
274
271
|
managed_policies=[
|
|
@@ -294,7 +291,20 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
294
291
|
)
|
|
295
292
|
)
|
|
296
293
|
|
|
297
|
-
#
|
|
294
|
+
# Add Secrets Manager permissions for origin secret access
|
|
295
|
+
execution_role.add_to_policy(
|
|
296
|
+
iam.PolicyStatement(
|
|
297
|
+
effect=iam.Effect.ALLOW,
|
|
298
|
+
actions=[
|
|
299
|
+
"secretsmanager:GetSecretValue",
|
|
300
|
+
"secretsmanager:DescribeSecret"
|
|
301
|
+
],
|
|
302
|
+
resources=[
|
|
303
|
+
f"arn:aws:secretsmanager:*:{cdk.Aws.ACCOUNT_ID}:secret:{self.deployment.environment}/{self.workload.name}/origin-secret*"
|
|
304
|
+
]
|
|
305
|
+
)
|
|
306
|
+
)
|
|
307
|
+
|
|
298
308
|
self.function = _lambda.Function(
|
|
299
309
|
self,
|
|
300
310
|
function_name,
|
|
@@ -307,6 +317,7 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
307
317
|
description=self.edge_config.description,
|
|
308
318
|
role=execution_role,
|
|
309
319
|
# Lambda@Edge does NOT support environment variables
|
|
320
|
+
# Configuration must be fetched from SSM at runtime
|
|
310
321
|
log_retention=logs.RetentionDays.ONE_WEEK,
|
|
311
322
|
)
|
|
312
323
|
|
|
@@ -314,6 +325,36 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
314
325
|
for key, value in self.edge_config.tags.items():
|
|
315
326
|
cdk.Tags.of(self.function).add(key, value)
|
|
316
327
|
|
|
328
|
+
# Add resource-based policy allowing CloudFront to invoke the Lambda function
|
|
329
|
+
# This is REQUIRED for Lambda@Edge to work properly
|
|
330
|
+
permission_kwargs = {
|
|
331
|
+
"principal": iam.ServicePrincipal("cloudfront.amazonaws.com"),
|
|
332
|
+
"action": "lambda:InvokeFunction",
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
# Optional: Add source ARN restriction if CloudFront distribution ARN is available
|
|
336
|
+
# This provides more secure permission scoping
|
|
337
|
+
distribution_arn_path = f"/{self.deployment.environment}/{self.workload.name}/cloudfront/arn"
|
|
338
|
+
try:
|
|
339
|
+
distribution_arn = ssm.StringParameter.from_string_parameter_name(
|
|
340
|
+
self,
|
|
341
|
+
"cloudfront-distribution-arn",
|
|
342
|
+
distribution_arn_path
|
|
343
|
+
).string_value
|
|
344
|
+
|
|
345
|
+
# Add source ARN condition for more secure permission scoping
|
|
346
|
+
permission_kwargs["source_arn"] = distribution_arn
|
|
347
|
+
logger.info(f"Adding CloudFront permission with source ARN restriction: {distribution_arn}")
|
|
348
|
+
except Exception:
|
|
349
|
+
# Distribution ARN not available (common during initial deployment)
|
|
350
|
+
# CloudFront will scope the permission appropriately when it associates the Lambda
|
|
351
|
+
logger.warning(f"CloudFront distribution ARN not found at {distribution_arn_path}, using open permission")
|
|
352
|
+
|
|
353
|
+
self.function.add_permission(
|
|
354
|
+
"CloudFrontInvokePermission",
|
|
355
|
+
**permission_kwargs
|
|
356
|
+
)
|
|
357
|
+
|
|
317
358
|
def _create_function_version(self, function_name: str) -> None:
|
|
318
359
|
"""
|
|
319
360
|
Create a version of the Lambda function.
|
|
@@ -329,10 +370,69 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
329
370
|
f"Version for Lambda@Edge deployment - {self.edge_config.description}"
|
|
330
371
|
)
|
|
331
372
|
|
|
332
|
-
def
|
|
333
|
-
"""
|
|
373
|
+
def _configure_edge_log_retention(self, function_name: str) -> None:
|
|
374
|
+
"""
|
|
375
|
+
Configure log retention for Lambda@Edge log groups in all edge regions
|
|
376
|
+
"""
|
|
377
|
+
from aws_cdk import custom_resources as cr
|
|
378
|
+
|
|
379
|
+
# Get edge log retention from config (default to same as primary logs)
|
|
380
|
+
edge_retention_days = self.edge_config.dictionary.get("edge_log_retention_days", 7)
|
|
381
|
+
|
|
382
|
+
# List of common Lambda@Edge regions
|
|
383
|
+
edge_regions = [
|
|
384
|
+
'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2',
|
|
385
|
+
'eu-west-1', 'eu-west-2', 'eu-central-1',
|
|
386
|
+
'ap-southeast-1', 'ap-southeast-2', 'ap-northeast-1',
|
|
387
|
+
'ca-central-1', 'sa-east-1'
|
|
388
|
+
]
|
|
334
389
|
|
|
390
|
+
# Lambda@Edge log groups are created in us-east-1 with region prefix
|
|
391
|
+
# Pattern: /aws/lambda/{edge-region}.{function-name}
|
|
392
|
+
# But they're all located in us-east-1
|
|
393
|
+
|
|
394
|
+
for edge_region in edge_regions:
|
|
395
|
+
log_group_name = f"/aws/lambda/{edge_region}.{function_name}"
|
|
396
|
+
|
|
397
|
+
# Use AwsCustomResource to set log retention
|
|
398
|
+
cr.AwsCustomResource(
|
|
399
|
+
self, f"EdgeLogRetention-{edge_region}",
|
|
400
|
+
on_update={
|
|
401
|
+
"service": "CloudWatchLogs",
|
|
402
|
+
"action": "putRetentionPolicy",
|
|
403
|
+
"parameters": {
|
|
404
|
+
"logGroupName": log_group_name,
|
|
405
|
+
"retentionInDays": edge_retention_days
|
|
406
|
+
},
|
|
407
|
+
"physical_resource_id": cr.PhysicalResourceId.from_response("logGroupName")
|
|
408
|
+
},
|
|
409
|
+
on_delete={
|
|
410
|
+
"service": "CloudWatchLogs",
|
|
411
|
+
"action": "deleteRetentionPolicy",
|
|
412
|
+
"parameters": {
|
|
413
|
+
"logGroupName": log_group_name
|
|
414
|
+
},
|
|
415
|
+
"physical_resource_id": cr.PhysicalResourceId.from_response("logGroupName")
|
|
416
|
+
},
|
|
417
|
+
policy=cr.AwsCustomResourcePolicy.from_statements([
|
|
418
|
+
iam.PolicyStatement(
|
|
419
|
+
effect=iam.Effect.ALLOW,
|
|
420
|
+
actions=[
|
|
421
|
+
"logs:PutRetentionPolicy",
|
|
422
|
+
"logs:DeleteRetentionPolicy",
|
|
423
|
+
"logs:DescribeLogGroups",
|
|
424
|
+
"logs:DescribeLogStreams"
|
|
425
|
+
],
|
|
426
|
+
# All Lambda@Edge log groups are in us-east-1
|
|
427
|
+
resources=[f"arn:aws:logs:us-east-1:*:log-group:{log_group_name}*"]
|
|
428
|
+
)
|
|
429
|
+
])
|
|
430
|
+
)
|
|
335
431
|
|
|
432
|
+
logger.info(f"Configured edge log retention to {edge_retention_days} days for {len(edge_regions)} regions")
|
|
433
|
+
|
|
434
|
+
def _add_outputs(self, function_name: str) -> None:
|
|
435
|
+
"""Add CloudFormation outputs and SSM exports"""
|
|
336
436
|
|
|
337
437
|
# SSM Parameter Store exports (if configured)
|
|
338
438
|
ssm_exports = self.edge_config.dictionary.get("ssm", {}).get("exports", {})
|
|
@@ -355,40 +455,31 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
355
455
|
description=f"{key} for Lambda@Edge function {function_name}"
|
|
356
456
|
)
|
|
357
457
|
|
|
358
|
-
# Export
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
)
|
|
387
|
-
|
|
388
|
-
self.export_ssm_parameter(
|
|
389
|
-
self,
|
|
390
|
-
f"env-{env_key}-param",
|
|
391
|
-
env_value,
|
|
392
|
-
ssm_path,
|
|
393
|
-
description=f"Configuration for Lambda@Edge: {env_key}"
|
|
394
|
-
)
|
|
458
|
+
# Export the complete configuration as a single SSM parameter
|
|
459
|
+
config_ssm_path = f"/{self.deployment.environment}/{self.workload.name}/lambda-edge/config"
|
|
460
|
+
configuration = self.edge_config.dictionary.get("configuration", {})
|
|
461
|
+
environment_variables = configuration.get("environment_variables", {})
|
|
462
|
+
|
|
463
|
+
full_config = {
|
|
464
|
+
"environment_variables": environment_variables
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
self.export_ssm_parameter(
|
|
468
|
+
self,
|
|
469
|
+
"full-config-param",
|
|
470
|
+
json.dumps(full_config),
|
|
471
|
+
config_ssm_path,
|
|
472
|
+
description=f"Complete Lambda@Edge configuration for {function_name} - update this for dynamic changes"
|
|
473
|
+
)
|
|
474
|
+
|
|
475
|
+
# Export cache TTL parameter for dynamic cache control
|
|
476
|
+
cache_ttl_ssm_path = f"/{self.deployment.environment}/{self.workload.name}/lambda-edge/cache-ttl"
|
|
477
|
+
default_cache_ttl = self.edge_config.dictionary.get("cache_ttl_seconds", 300) # Default 5 minutes
|
|
478
|
+
|
|
479
|
+
self.export_ssm_parameter(
|
|
480
|
+
self,
|
|
481
|
+
"cache-ttl-param",
|
|
482
|
+
str(default_cache_ttl),
|
|
483
|
+
cache_ttl_ssm_path,
|
|
484
|
+
description=f"Lambda@Edge configuration cache TTL in seconds for {function_name} - adjust for maintenance windows (30-3600)"
|
|
485
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.19.18"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.19.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/examples/separate-api-gateway/api-gateway-stack.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/deployment_wave.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/enhanced_base_config.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/enhanced_ssm_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/_resources.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/api_gateway.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/auto_scaling.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/cloudfront.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/code_artifact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/cognito.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/docker.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/dynamodb.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/ecs_cluster.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/ecs_service.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/exisiting.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/lambda_layers.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/load_balancer.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/monitoring.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/configurations/resources/route53.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/constructs/sqs/policies/sqs_policies.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/networked_stack_mixin.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/interfaces/standardized_ssm_mixin.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/auto_scaling/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/aws_lambdas/lambda_stack.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/buckets/bucket_stack.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/cloudfront/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/cognito/cognito_stack.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/dynamodb/dynamodb_stack.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/ecs/ecs_cluster_stack.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/lambda_edge/__init__.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/load_balancer/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/monitoring/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/route53/__init__.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/route53/route53_stack.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stack_library/security_group/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/stages/websites/static_website_stage.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/configuration_loader.py
RENAMED
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/environment_services.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/json_loading_utility.py
RENAMED
|
File without changes
|
{cdk_factory-0.19.9 → cdk_factory-0.19.18}/src/cdk_factory/utilities/lambda_function_utilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|