cdk-factory 0.19.0__py3-none-any.whl → 0.19.9__py3-none-any.whl
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.
Potentially problematic release.
This version of cdk-factory might be problematic. Click here for more details.
- cdk_factory/configurations/resources/lambda_edge.py +2 -2
- cdk_factory/configurations/resources/rds.py +1 -1
- cdk_factory/configurations/resources/s3.py +9 -1
- cdk_factory/constructs/cloudfront/cloudfront_distribution_construct.py +1 -1
- cdk_factory/stack_library/cloudfront/cloudfront_stack.py +42 -20
- cdk_factory/stack_library/lambda_edge/lambda_edge_stack.py +33 -4
- cdk_factory/stack_library/websites/static_website_stack.py +6 -2
- cdk_factory/version.py +1 -1
- {cdk_factory-0.19.0.dist-info → cdk_factory-0.19.9.dist-info}/METADATA +1 -1
- {cdk_factory-0.19.0.dist-info → cdk_factory-0.19.9.dist-info}/RECORD +13 -13
- {cdk_factory-0.19.0.dist-info → cdk_factory-0.19.9.dist-info}/WHEEL +0 -0
- {cdk_factory-0.19.0.dist-info → cdk_factory-0.19.9.dist-info}/entry_points.txt +0 -0
- {cdk_factory-0.19.0.dist-info → cdk_factory-0.19.9.dist-info}/licenses/LICENSE +0 -0
|
@@ -52,13 +52,13 @@ class LambdaEdgeConfig(EnhancedBaseConfig):
|
|
|
52
52
|
"""Timeout in seconds (max 5 for origin-request)"""
|
|
53
53
|
timeout = int(self._config.get("timeout", 5))
|
|
54
54
|
if timeout > 5:
|
|
55
|
-
raise ValueError("Lambda@Edge origin-request timeout cannot exceed 5 seconds")
|
|
55
|
+
raise ValueError("Lambda@Edge origin-request timeout cannot exceed 5 seconds. Value was set to {}".format(timeout))
|
|
56
56
|
return timeout
|
|
57
57
|
|
|
58
58
|
@property
|
|
59
59
|
def code_path(self) -> str:
|
|
60
60
|
"""Path to Lambda function code directory"""
|
|
61
|
-
return self._config.get("code_path", "./lambdas/
|
|
61
|
+
return self._config.get("code_path", "./lambdas/cloudfront/ip_gate")
|
|
62
62
|
|
|
63
63
|
@property
|
|
64
64
|
def environment(self) -> Dict[str, str]:
|
|
@@ -158,7 +158,15 @@ class S3BucketConfig(EnhancedBaseConfig):
|
|
|
158
158
|
value = self.__config.get("block_public_access")
|
|
159
159
|
|
|
160
160
|
if value and isinstance(value, str):
|
|
161
|
-
if value.lower() == "
|
|
161
|
+
if value.lower() == "disabled":
|
|
162
|
+
# For public website hosting, disable block public access
|
|
163
|
+
return s3.BlockPublicAccess(
|
|
164
|
+
block_public_acls=False,
|
|
165
|
+
block_public_policy=False,
|
|
166
|
+
ignore_public_acls=False,
|
|
167
|
+
restrict_public_buckets=False
|
|
168
|
+
)
|
|
169
|
+
elif value.lower() == "block_acls":
|
|
162
170
|
return s3.BlockPublicAccess.BLOCK_ACLS
|
|
163
171
|
# elif value.lower() == "block_public_acls":
|
|
164
172
|
# return s3.BlockPublicAccess.block_public_acls
|
|
@@ -14,6 +14,7 @@ from aws_cdk import (
|
|
|
14
14
|
aws_cloudfront_origins as origins,
|
|
15
15
|
aws_certificatemanager as acm,
|
|
16
16
|
aws_route53 as route53,
|
|
17
|
+
aws_s3 as s3,
|
|
17
18
|
aws_lambda as _lambda,
|
|
18
19
|
aws_ssm as ssm,
|
|
19
20
|
CfnOutput,
|
|
@@ -222,27 +223,27 @@ class CloudFrontStack(IStack):
|
|
|
222
223
|
|
|
223
224
|
def _create_custom_origin(self, config: Dict[str, Any]) -> cloudfront.IOrigin:
|
|
224
225
|
"""Create custom origin (ALB, API Gateway, etc.)"""
|
|
225
|
-
domain_name = config.get("domain_name")
|
|
226
|
+
domain_name = self.resolve_ssm_value(self, config.get("domain_name"), config.get("domain_name"))
|
|
226
227
|
origin_id = config.get("id")
|
|
227
228
|
|
|
228
229
|
if not domain_name:
|
|
229
230
|
raise ValueError("domain_name is required for custom origin")
|
|
230
231
|
|
|
231
|
-
# Check if domain name is a placeholder from ssm_imports
|
|
232
|
-
if domain_name.startswith("{{") and domain_name.endswith("}}"):
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
# Legacy support: Check if domain name is an SSM parameter reference
|
|
241
|
-
elif domain_name.startswith("{{ssm:") and domain_name.endswith("}}"):
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
232
|
+
# # Check if domain name is a placeholder from ssm_imports
|
|
233
|
+
# if domain_name.startswith("{{") and domain_name.endswith("}}"):
|
|
234
|
+
# placeholder_key = domain_name[2:-2] # Remove {{ and }}
|
|
235
|
+
# if placeholder_key in self.ssm_imported_values:
|
|
236
|
+
# domain_name = self.ssm_imported_values[placeholder_key]
|
|
237
|
+
# logger.info(f"Resolved domain from SSM import: {placeholder_key}")
|
|
238
|
+
# else:
|
|
239
|
+
# logger.warning(f"Placeholder {domain_name} not found in SSM imports")
|
|
240
|
+
|
|
241
|
+
# # Legacy support: Check if domain name is an SSM parameter reference
|
|
242
|
+
# elif domain_name.startswith("{{ssm:") and domain_name.endswith("}}"):
|
|
243
|
+
# # Extract SSM parameter name
|
|
244
|
+
# ssm_param = domain_name[6:-2] # Remove {{ssm: and }}
|
|
245
|
+
# domain_name = ssm.StringParameter.value_from_lookup(self, ssm_param)
|
|
246
|
+
# logger.info(f"Resolved domain from SSM lookup {ssm_param}: {domain_name}")
|
|
246
247
|
|
|
247
248
|
# Build custom headers (e.g., X-Origin-Secret)
|
|
248
249
|
custom_headers = {}
|
|
@@ -296,11 +297,32 @@ class CloudFrontStack(IStack):
|
|
|
296
297
|
|
|
297
298
|
def _create_s3_origin(self, config: Dict[str, Any]) -> cloudfront.IOrigin:
|
|
298
299
|
"""Create S3 origin"""
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
300
|
+
bucket_name = self.resolve_ssm_value(self, config.get("bucket_name"), config.get("bucket_name"))
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
origin_path = config.get("origin_path", "")
|
|
304
|
+
|
|
305
|
+
if not bucket_name:
|
|
306
|
+
raise ValueError("S3 origin requires 'bucket_name' configuration")
|
|
307
|
+
|
|
308
|
+
# For S3 origins, we need to import the bucket by name
|
|
309
|
+
bucket = s3.Bucket.from_bucket_name(
|
|
310
|
+
self,
|
|
311
|
+
id=f"S3OriginBucket-{config.get('id', 'unknown')}",
|
|
312
|
+
bucket_name=bucket_name
|
|
313
|
+
)
|
|
314
|
+
|
|
315
|
+
# Create S3 origin with OAC (Origin Access Control) for security
|
|
316
|
+
origin = origins.S3BucketOrigin.with_origin_access_control(
|
|
317
|
+
bucket,
|
|
318
|
+
origin_path=origin_path,
|
|
319
|
+
origin_access_levels=[
|
|
320
|
+
cloudfront.AccessLevel.READ,
|
|
321
|
+
cloudfront.AccessLevel.LIST,
|
|
322
|
+
],
|
|
303
323
|
)
|
|
324
|
+
|
|
325
|
+
return origin
|
|
304
326
|
|
|
305
327
|
def _create_distribution(self) -> None:
|
|
306
328
|
"""Create CloudFront distribution"""
|
|
@@ -53,6 +53,8 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
53
53
|
self.workload: Optional[WorkloadConfig] = None
|
|
54
54
|
self.function: Optional[_lambda.Function] = None
|
|
55
55
|
self.function_version: Optional[_lambda.Version] = None
|
|
56
|
+
# Cache for resolved environment variables to prevent duplicate construct creation
|
|
57
|
+
self._resolved_env_cache: Optional[Dict[str, str]] = None
|
|
56
58
|
|
|
57
59
|
def build(
|
|
58
60
|
self,
|
|
@@ -101,12 +103,32 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
101
103
|
# Add outputs
|
|
102
104
|
self._add_outputs(function_name)
|
|
103
105
|
|
|
106
|
+
def _sanitize_construct_name(self, name: str) -> str:
|
|
107
|
+
"""
|
|
108
|
+
Create a deterministic, valid CDK construct name from any string.
|
|
109
|
+
Replaces non-alphanumeric characters with dashes and limits length.
|
|
110
|
+
"""
|
|
111
|
+
# Replace non-alphanumeric characters with dashes
|
|
112
|
+
sanitized = ''.join(c if c.isalnum() else '-' for c in name)
|
|
113
|
+
# Remove consecutive dashes
|
|
114
|
+
while '--' in sanitized:
|
|
115
|
+
sanitized = sanitized.replace('--', '-')
|
|
116
|
+
# Remove leading/trailing dashes
|
|
117
|
+
sanitized = sanitized.strip('-')
|
|
118
|
+
# Limit to 255 characters (CDK limit)
|
|
119
|
+
return sanitized[:255]
|
|
120
|
+
|
|
104
121
|
def _resolve_environment_variables(self) -> Dict[str, str]:
|
|
105
122
|
"""
|
|
106
123
|
Resolve environment variables, including SSM parameter references.
|
|
107
124
|
Supports {{ssm:parameter-path}} syntax for dynamic SSM lookups.
|
|
108
125
|
Uses CDK tokens that resolve at deployment time, not synthesis time.
|
|
126
|
+
Caches results to prevent duplicate construct creation.
|
|
109
127
|
"""
|
|
128
|
+
# Return cached result if available
|
|
129
|
+
if self._resolved_env_cache is not None:
|
|
130
|
+
return self._resolved_env_cache
|
|
131
|
+
|
|
110
132
|
resolved_env = {}
|
|
111
133
|
|
|
112
134
|
for key, value in self.edge_config.environment.items():
|
|
@@ -115,24 +137,29 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
115
137
|
# Extract SSM parameter path
|
|
116
138
|
ssm_param_path = value[6:-2] # Remove {{ssm: and }}
|
|
117
139
|
|
|
140
|
+
# Create deterministic construct name from parameter path
|
|
141
|
+
construct_name = self._sanitize_construct_name(f"env-{key}-{ssm_param_path}")
|
|
142
|
+
|
|
118
143
|
# Import SSM parameter - this creates a token that resolves at deployment time
|
|
119
144
|
param = ssm.StringParameter.from_string_parameter_name(
|
|
120
145
|
self,
|
|
121
|
-
|
|
146
|
+
construct_name,
|
|
122
147
|
ssm_param_path
|
|
123
148
|
)
|
|
124
149
|
resolved_value = param.string_value
|
|
125
|
-
logger.info(f"Resolved environment variable {key} from SSM {ssm_param_path}")
|
|
150
|
+
logger.info(f"Resolved environment variable {key} from SSM {ssm_param_path} as {construct_name}")
|
|
126
151
|
resolved_env[key] = resolved_value
|
|
127
152
|
else:
|
|
128
153
|
resolved_env[key] = value
|
|
129
154
|
|
|
155
|
+
# Cache the result
|
|
156
|
+
self._resolved_env_cache = resolved_env
|
|
130
157
|
return resolved_env
|
|
131
158
|
|
|
132
159
|
def _create_lambda_function(self, function_name: str) -> None:
|
|
133
160
|
"""Create the Lambda function"""
|
|
134
161
|
|
|
135
|
-
# Resolve code path - support package references (e.g., "cdk_factory:lambdas/
|
|
162
|
+
# Resolve code path - support package references (e.g., "cdk_factory:lambdas/cloudfront/ip_gate")
|
|
136
163
|
code_path_str = self.edge_config.code_path
|
|
137
164
|
|
|
138
165
|
if ':' in code_path_str:
|
|
@@ -185,10 +212,12 @@ class LambdaEdgeStack(IStack, StandardizedSsmMixin):
|
|
|
185
212
|
# Create runtime configuration file for Lambda@Edge
|
|
186
213
|
# Since Lambda@Edge doesn't support environment variables, we bundle a config file
|
|
187
214
|
# Use the full function_name (e.g., "tech-talk-dev-ip-gate") not just the base name
|
|
215
|
+
resolved_env = self._resolve_environment_variables()
|
|
188
216
|
runtime_config = {
|
|
189
217
|
'environment': self.deployment.environment,
|
|
190
218
|
'function_name': function_name,
|
|
191
|
-
'region': self.deployment.region
|
|
219
|
+
'region': self.deployment.region,
|
|
220
|
+
'environment_variables': resolved_env # Add actual environment variables
|
|
192
221
|
}
|
|
193
222
|
|
|
194
223
|
runtime_config_path = temp_code_dir / 'runtime_config.json'
|
|
@@ -113,12 +113,16 @@ class StaticWebSiteStack(IStack):
|
|
|
113
113
|
self, stack_config: StackConfig, workload: WorkloadConfig
|
|
114
114
|
) -> str:
|
|
115
115
|
source = stack_config.dictionary.get("src", {}).get("path")
|
|
116
|
+
if not source:
|
|
117
|
+
raise ValueError("Source path is required for static website stack")
|
|
116
118
|
for base in workload.paths:
|
|
117
|
-
|
|
119
|
+
if base is None:
|
|
120
|
+
continue
|
|
121
|
+
candidate = Path(os.path.join(str(Path(base)), source)).resolve()
|
|
118
122
|
|
|
119
123
|
if candidate.exists():
|
|
120
124
|
return str(candidate)
|
|
121
|
-
raise ValueError(f"Could not find the source path: {source}")
|
|
125
|
+
raise ValueError(f"Could not find the source path for static site: {source}")
|
|
122
126
|
|
|
123
127
|
def __setup_cloudfront_distribution(
|
|
124
128
|
self,
|
cdk_factory/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.19.
|
|
1
|
+
__version__ = "0.19.9"
|
|
@@ -2,7 +2,7 @@ cdk_factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
cdk_factory/app.py,sha256=RnX0-pwdTAPAdKJK_j13Zl8anf9zYKBwboR0KA8K8xM,10346
|
|
3
3
|
cdk_factory/cdk.json,sha256=SKZKhJ2PBpFH78j-F8S3VDYW-lf76--Q2I3ON-ZIQfw,3106
|
|
4
4
|
cdk_factory/cli.py,sha256=FGbCTS5dYCNsfp-etshzvFlGDCjC28r6rtzYbe7KoHI,6407
|
|
5
|
-
cdk_factory/version.py,sha256=
|
|
5
|
+
cdk_factory/version.py,sha256=1EV9ezTKGdpqmjHrdFkMNdKldE0dDb2concSj8kbz0M,23
|
|
6
6
|
cdk_factory/builds/README.md,sha256=9BBWd7bXpyKdMU_g2UljhQwrC9i5O_Tvkb6oPvndoZk,90
|
|
7
7
|
cdk_factory/commands/command_loader.py,sha256=QbLquuP_AdxtlxlDy-2IWCQ6D-7qa58aphnDPtp_uTs,3744
|
|
8
8
|
cdk_factory/configurations/base_config.py,sha256=eJ3Pl3GWk1jVr_bYQaaWlw4_-ZiFGaiXllI_fOOX1i0,9323
|
|
@@ -34,25 +34,25 @@ cdk_factory/configurations/resources/ecr.py,sha256=iJEtKqBT7vQU0LU4urIglraIR7cPZ
|
|
|
34
34
|
cdk_factory/configurations/resources/ecs_cluster.py,sha256=mQYJu7SUPDl5E4dMR6HCPFoWvFA3RGIb0iMNn-K7LX8,3635
|
|
35
35
|
cdk_factory/configurations/resources/ecs_service.py,sha256=bOWjVECd6Kbc5NGGSnDaopnKrjRsUfmaZ6-qrsmTs3Q,6468
|
|
36
36
|
cdk_factory/configurations/resources/exisiting.py,sha256=EVOLnkB-DGfTlmDgyQ5DD5k2zYfpFxqI3gugDR7mifI,478
|
|
37
|
-
cdk_factory/configurations/resources/lambda_edge.py,sha256=
|
|
37
|
+
cdk_factory/configurations/resources/lambda_edge.py,sha256=1tzxNPIsUSbwrdBHWrmqg08S629U3IGHNaNjEaLO_r8,3447
|
|
38
38
|
cdk_factory/configurations/resources/lambda_function.py,sha256=VENZ9-ABJ5mjcN8J8wdLH4KHDYr1kWO0iFDH0B2mJXA,14659
|
|
39
39
|
cdk_factory/configurations/resources/lambda_layers.py,sha256=gVeP_-LC3Eq0lkPaG_JfFUwboM5evRPr99SfKj53m7A,633
|
|
40
40
|
cdk_factory/configurations/resources/lambda_triggers.py,sha256=MD7cdMNKEulNBhtMLIFnWJuJ5R-yyIqa0LHUgbSQerA,834
|
|
41
41
|
cdk_factory/configurations/resources/load_balancer.py,sha256=P-jKemIjIWWqScmQKspmRy1m3BrwNkRtTNHDStOAJds,5617
|
|
42
42
|
cdk_factory/configurations/resources/monitoring.py,sha256=CPYWbUbWQzoPqDhdPiB4Vahq-pPi6BEkavkVohadSIo,2422
|
|
43
|
-
cdk_factory/configurations/resources/rds.py,sha256=
|
|
43
|
+
cdk_factory/configurations/resources/rds.py,sha256=pX6uihguv1apYH93obcE4RloQDP48q5JHnYTnO39Pn0,15935
|
|
44
44
|
cdk_factory/configurations/resources/resource_mapping.py,sha256=cwv3n63RJ6E59ErsmSTdkW4i-g8huhHtKI0ExbRhJxA,2182
|
|
45
45
|
cdk_factory/configurations/resources/resource_naming.py,sha256=VE9S2cpzp11qqPL2z1sX79wXH0o1SntO2OG74nEmWC8,5508
|
|
46
46
|
cdk_factory/configurations/resources/resource_types.py,sha256=1WQHyDoErb-M-tETZZzyLDtbq_jdC85-I403dM48pgE,2317
|
|
47
47
|
cdk_factory/configurations/resources/route53.py,sha256=u63kw9cLBdOQrvxnULmopFqiArIYNvoWhrILNWvhD7w,3599
|
|
48
48
|
cdk_factory/configurations/resources/route53_hosted_zone.py,sha256=qjEYPCSxSOx5blr9EULv892ezxkCs--yrLa1ngWbyXM,880
|
|
49
49
|
cdk_factory/configurations/resources/rum.py,sha256=KgC2Mxhtr5XrICVXdgOXmxYp0GKu9lBs7izfG-Re9Ck,5294
|
|
50
|
-
cdk_factory/configurations/resources/s3.py,sha256=
|
|
50
|
+
cdk_factory/configurations/resources/s3.py,sha256=3RVGvHLEnxa-hCgDXsqZ9nq8Aic0zW0JVgMdybl95is,6407
|
|
51
51
|
cdk_factory/configurations/resources/security_group.py,sha256=8kQtaaRVEn2aDm8XoC7QFh2mDOFbPbgobmssIuqU8MA,2259
|
|
52
52
|
cdk_factory/configurations/resources/security_group_full_stack.py,sha256=CujSl6mfPlVO0Dxso8fDjwW5VZB0vbeP9HqbcTaM8H4,2657
|
|
53
53
|
cdk_factory/configurations/resources/sqs.py,sha256=fAh2dqttJ6PX46enFRULuiLEu3TEj0Vb2xntAOgUpYE,4346
|
|
54
54
|
cdk_factory/configurations/resources/vpc.py,sha256=_W77du9wf8SJM64JbEAxEOQYerOm6aw4YaSsE7A_kKE,4453
|
|
55
|
-
cdk_factory/constructs/cloudfront/cloudfront_distribution_construct.py,sha256=
|
|
55
|
+
cdk_factory/constructs/cloudfront/cloudfront_distribution_construct.py,sha256=WbbI37Ez262kffJNNpvyjXtFwOQlNfRql0NGBCLjpgE,25775
|
|
56
56
|
cdk_factory/constructs/ecr/ecr_construct.py,sha256=jEimLwLvO5ERuFEn_L2q2pyPKgkdHQ6Oi7Sy990ttSg,11002
|
|
57
57
|
cdk_factory/constructs/lambdas/lambda_function_construct.py,sha256=SQ5SEXn4kezVAzXuv_A_JB3o_svyBXOMi-htvfB9HQs,4516
|
|
58
58
|
cdk_factory/constructs/lambdas/lambda_function_docker_construct.py,sha256=O8aiHpNQ59eE3qEttEHVxbvp06v4byXOeYCVTAOI_Cg,9993
|
|
@@ -91,7 +91,7 @@ cdk_factory/stack_library/aws_lambdas/lambda_stack.py,sha256=SFbBPvvCopbyiuYtq-O
|
|
|
91
91
|
cdk_factory/stack_library/buckets/README.md,sha256=XkK3UNVtRLE7NtUvbhCOBBYUYi8hlrrSaI1s3GJVrqI,78
|
|
92
92
|
cdk_factory/stack_library/buckets/bucket_stack.py,sha256=SLoZqSffAqmeBBEVUQg54D_8Ad5UKdkjEAmKAVgAqQo,1778
|
|
93
93
|
cdk_factory/stack_library/cloudfront/__init__.py,sha256=Zfx50q4xIJ4ZEoVIzUBDTKbRE9DKDM6iyVIFhtQXvww,153
|
|
94
|
-
cdk_factory/stack_library/cloudfront/cloudfront_stack.py,sha256=
|
|
94
|
+
cdk_factory/stack_library/cloudfront/cloudfront_stack.py,sha256=Se5xvSp5QyubTI3BsAWeBeZHykGGHGYeSial1FzKP7s,32281
|
|
95
95
|
cdk_factory/stack_library/code_artifact/code_artifact_stack.py,sha256=o86cmC_ZV82z-K7DoAR0u1nAieoTi-vxRF01tyJn-9M,5297
|
|
96
96
|
cdk_factory/stack_library/cognito/cognito_stack.py,sha256=3tjKCNcIwXZn7fd4EDQdY6H9m6CnZohI4uTQ4TpacRQ,25327
|
|
97
97
|
cdk_factory/stack_library/dynamodb/dynamodb_stack.py,sha256=-_Ij1zXIxUuZIWgdevam_1vD3LEJ6pFs9U0hmw0KwIw,6743
|
|
@@ -101,7 +101,7 @@ cdk_factory/stack_library/ecs/__init__.py,sha256=o5vGDtD_h-gVXb3-Ysr8xUNpEcMsnmM
|
|
|
101
101
|
cdk_factory/stack_library/ecs/ecs_cluster_stack.py,sha256=sAPTLU5CAwMoLTW_pNy_cd0OtVkfDR7IxxsSq5AE0yo,12091
|
|
102
102
|
cdk_factory/stack_library/ecs/ecs_service_stack.py,sha256=oZdFfCPrLJpNwERCj1vr1pGq1AExOE6Tt4lwdTPQfaw,27049
|
|
103
103
|
cdk_factory/stack_library/lambda_edge/__init__.py,sha256=ByBJ_CWdc4UtTmFBZH-6pzBMNkjkdtE65AmnB0Fs6lM,156
|
|
104
|
-
cdk_factory/stack_library/lambda_edge/lambda_edge_stack.py,sha256=
|
|
104
|
+
cdk_factory/stack_library/lambda_edge/lambda_edge_stack.py,sha256=7owFVRijjtyAAgwRWfVophJlwi9ATDon9ekkJdSQTNw,17050
|
|
105
105
|
cdk_factory/stack_library/load_balancer/__init__.py,sha256=wZpKw2OecLJGdF5mPayCYAEhu2H3c2gJFFIxwXftGDU,52
|
|
106
106
|
cdk_factory/stack_library/load_balancer/load_balancer_stack.py,sha256=ApW5q3SAvSJtiK0RInNljmubqXqKZU5QBAaUoeIW-pM,28287
|
|
107
107
|
cdk_factory/stack_library/monitoring/__init__.py,sha256=k1G_KDx47Aw0UugaL99PN_TKlyLK4nkJVApCaAK7GJg,153
|
|
@@ -118,7 +118,7 @@ cdk_factory/stack_library/security_group/security_group_stack.py,sha256=uthk_MX2
|
|
|
118
118
|
cdk_factory/stack_library/simple_queue_service/sqs_stack.py,sha256=HSJgWo4Wl6nQ5rJFQXOkDTyd_6PuHhx5VyaZLVvmYM8,4891
|
|
119
119
|
cdk_factory/stack_library/vpc/__init__.py,sha256=7pIqP97Gf2AJbv9Ebp1WbQGHYhgEbWJ52L1MzeXBybA,42
|
|
120
120
|
cdk_factory/stack_library/vpc/vpc_stack.py,sha256=8uFyPIhAu-4A3iclTFlOiJrEZuYu67gI5UtiDSzmFF4,14461
|
|
121
|
-
cdk_factory/stack_library/websites/static_website_stack.py,sha256=
|
|
121
|
+
cdk_factory/stack_library/websites/static_website_stack.py,sha256=twpR9y4bxDx2GcEn0uP8PFNbsrgb8G9juZfeuHj7VqE,11433
|
|
122
122
|
cdk_factory/stages/websites/static_website_stage.py,sha256=X4fpKXkhb0zIbSHx3QyddBhVSLBryb1vf1Cg2fMTqog,755
|
|
123
123
|
cdk_factory/templates/README.md,sha256=ATBEjG6beYvbEAdLtZ_8xnxgFD5X0cgZoI_6pToqH90,2679
|
|
124
124
|
cdk_factory/templates/app.py.template,sha256=aM60x0nNV80idtCL8jm1EddY63F5tDITYOlavg-BPMU,1069
|
|
@@ -136,8 +136,8 @@ cdk_factory/utilities/os_execute.py,sha256=5Op0LY_8Y-pUm04y1k8MTpNrmQvcLmQHPQITE
|
|
|
136
136
|
cdk_factory/utils/api_gateway_utilities.py,sha256=If7Xu5s_UxmuV-kL3JkXxPLBdSVUKoLtohm0IUFoiV8,4378
|
|
137
137
|
cdk_factory/validation/config_validator.py,sha256=Pb0TkLiPFzUplBOgMorhRCVm08vEzZhRU5xXCDTa5CA,17602
|
|
138
138
|
cdk_factory/workload/workload_factory.py,sha256=yDI3cRhVI5ELNDcJPLpk9UY54Uind1xQoV3spzT4z7E,6068
|
|
139
|
-
cdk_factory-0.19.
|
|
140
|
-
cdk_factory-0.19.
|
|
141
|
-
cdk_factory-0.19.
|
|
142
|
-
cdk_factory-0.19.
|
|
143
|
-
cdk_factory-0.19.
|
|
139
|
+
cdk_factory-0.19.9.dist-info/METADATA,sha256=He6-CGjPN_XFhfMIlrnG0Pupc8DfkLXgLlGf1o52HLc,2451
|
|
140
|
+
cdk_factory-0.19.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
141
|
+
cdk_factory-0.19.9.dist-info/entry_points.txt,sha256=S1DPe0ORcdiwEALMN_WIo3UQrW_g4YdQCLEsc_b0Swg,53
|
|
142
|
+
cdk_factory-0.19.9.dist-info/licenses/LICENSE,sha256=NOtdOeLwg2il_XBJdXUPFPX8JlV4dqTdDGAd2-khxT8,1066
|
|
143
|
+
cdk_factory-0.19.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|