cdk-factory 0.15.2__py3-none-any.whl → 0.15.3__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.
- cdk_factory/stack_library/vpc/vpc_stack.py +20 -14
- cdk_factory/version.py +1 -1
- {cdk_factory-0.15.2.dist-info → cdk_factory-0.15.3.dist-info}/METADATA +1 -1
- {cdk_factory-0.15.2.dist-info → cdk_factory-0.15.3.dist-info}/RECORD +7 -7
- {cdk_factory-0.15.2.dist-info → cdk_factory-0.15.3.dist-info}/WHEEL +0 -0
- {cdk_factory-0.15.2.dist-info → cdk_factory-0.15.3.dist-info}/entry_points.txt +0 -0
- {cdk_factory-0.15.2.dist-info → cdk_factory-0.15.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -105,19 +105,16 @@ class VpcStack(IStack, EnhancedSsmParameterMixin):
|
|
|
105
105
|
elif region == "us-west-2":
|
|
106
106
|
availability_zones = [f"us-west-2{chr(97+i)}" for i in range(max_azs)]
|
|
107
107
|
|
|
108
|
-
#
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
vpc_name,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
enable_dns_hostnames=self.vpc_config.enable_dns_hostnames,
|
|
119
|
-
enable_dns_support=self.vpc_config.enable_dns_support,
|
|
120
|
-
gateway_endpoints=(
|
|
108
|
+
# Build VPC properties
|
|
109
|
+
# Note: CDK doesn't allow both 'availability_zones' and 'max_azs' - use one or the other
|
|
110
|
+
vpc_props = {
|
|
111
|
+
"vpc_name": vpc_name,
|
|
112
|
+
"cidr": self.vpc_config.cidr,
|
|
113
|
+
"nat_gateways": nat_gateway_count,
|
|
114
|
+
"subnet_configuration": subnet_configuration,
|
|
115
|
+
"enable_dns_hostnames": self.vpc_config.enable_dns_hostnames,
|
|
116
|
+
"enable_dns_support": self.vpc_config.enable_dns_support,
|
|
117
|
+
"gateway_endpoints": (
|
|
121
118
|
{
|
|
122
119
|
"S3": ec2.GatewayVpcEndpointOptions(
|
|
123
120
|
service=ec2.GatewayVpcEndpointAwsService.S3
|
|
@@ -126,7 +123,16 @@ class VpcStack(IStack, EnhancedSsmParameterMixin):
|
|
|
126
123
|
if self.vpc_config.enable_s3_endpoint
|
|
127
124
|
else None
|
|
128
125
|
),
|
|
129
|
-
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
# Use either availability_zones or max_azs, not both
|
|
129
|
+
if availability_zones:
|
|
130
|
+
vpc_props["availability_zones"] = availability_zones
|
|
131
|
+
else:
|
|
132
|
+
vpc_props["max_azs"] = self.vpc_config.max_azs
|
|
133
|
+
|
|
134
|
+
# Create the VPC
|
|
135
|
+
vpc = ec2.Vpc(self, vpc_name, **vpc_props)
|
|
130
136
|
|
|
131
137
|
# Add interface endpoints if specified
|
|
132
138
|
if self.vpc_config.enable_interface_endpoints:
|
cdk_factory/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.15.
|
|
1
|
+
__version__ = "0.15.3"
|
|
@@ -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=WbcBdqaNCRHsRqs6rGd3pRLP4kQSII2td9dR0Fl6HcU,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=JKjhNsy0RCUZy1s8n5D_aXXI-upR9izaLtCTfKYiV9k,9624
|
|
@@ -111,7 +111,7 @@ cdk_factory/stack_library/security_group/security_group_full_stack.py,sha256=zu-
|
|
|
111
111
|
cdk_factory/stack_library/security_group/security_group_stack.py,sha256=2zxd5ozgQ4GP0xi-Ni7SyChtEAOzC0nXeGz78DPXwPg,14445
|
|
112
112
|
cdk_factory/stack_library/simple_queue_service/sqs_stack.py,sha256=jJksWrvrvgZUMM01RZ317DOIxqIJbkYYSYu38w0jHpc,6039
|
|
113
113
|
cdk_factory/stack_library/vpc/__init__.py,sha256=7pIqP97Gf2AJbv9Ebp1WbQGHYhgEbWJ52L1MzeXBybA,42
|
|
114
|
-
cdk_factory/stack_library/vpc/vpc_stack.py,sha256=
|
|
114
|
+
cdk_factory/stack_library/vpc/vpc_stack.py,sha256=UZuzb5uSOi4ghuLGPvsKqc3gwe6XI89jHV4WHX8MelA,11472
|
|
115
115
|
cdk_factory/stack_library/websites/static_website_stack.py,sha256=hcdZQxyhupCy7n7UpNaX8egc2oI9TrssyOufj-oJuo8,10343
|
|
116
116
|
cdk_factory/stages/websites/static_website_stage.py,sha256=X4fpKXkhb0zIbSHx3QyddBhVSLBryb1vf1Cg2fMTqog,755
|
|
117
117
|
cdk_factory/templates/README.md,sha256=ATBEjG6beYvbEAdLtZ_8xnxgFD5X0cgZoI_6pToqH90,2679
|
|
@@ -129,8 +129,8 @@ cdk_factory/utilities/lambda_function_utilities.py,sha256=S1GvBsY_q2cyUiaud3HORJ
|
|
|
129
129
|
cdk_factory/utilities/os_execute.py,sha256=5Op0LY_8Y-pUm04y1k8MTpNrmQvcLmQHPQITEP7EuSU,1019
|
|
130
130
|
cdk_factory/utils/api_gateway_utilities.py,sha256=If7Xu5s_UxmuV-kL3JkXxPLBdSVUKoLtohm0IUFoiV8,4378
|
|
131
131
|
cdk_factory/workload/workload_factory.py,sha256=mM8GU_5mKq_0OyK060T3JrUSUiGAcKf0eqNlT9mfaws,6028
|
|
132
|
-
cdk_factory-0.15.
|
|
133
|
-
cdk_factory-0.15.
|
|
134
|
-
cdk_factory-0.15.
|
|
135
|
-
cdk_factory-0.15.
|
|
136
|
-
cdk_factory-0.15.
|
|
132
|
+
cdk_factory-0.15.3.dist-info/METADATA,sha256=lsyCL4kq-zec5qwMBoMGoK5UWnJw3J1Gqri5Gg7ffLY,2451
|
|
133
|
+
cdk_factory-0.15.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
134
|
+
cdk_factory-0.15.3.dist-info/entry_points.txt,sha256=S1DPe0ORcdiwEALMN_WIo3UQrW_g4YdQCLEsc_b0Swg,53
|
|
135
|
+
cdk_factory-0.15.3.dist-info/licenses/LICENSE,sha256=NOtdOeLwg2il_XBJdXUPFPX8JlV4dqTdDGAd2-khxT8,1066
|
|
136
|
+
cdk_factory-0.15.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|