Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e139928
mtd file created
Jul 21, 2025
ac1a3f4
added mtd attributes, parameter checking for webACLID and SSLMethod, …
Jul 22, 2025
3906efd
deleted interfaces already define in distribution.ts and imported the…
Jul 22, 2025
f770445
renamed files and classes to follow convention, started mtd unit tests
Jul 23, 2025
83c5793
Merge pull request #1 from codyzhao2770/mtd
codyzhao2770 Jul 23, 2025
60ff7b2
Merge branch 'aws:main' into main
codyzhao2770 Jul 23, 2025
41b7f28
yarn.lock
Jul 23, 2025
f3deeba
yarn.lock
Jul 23, 2025
d512b54
started modifying distribution interface and prop checking for mtd su…
Jul 24, 2025
e9dcaf2
added configuration checking for multitenant distributions
Jul 28, 2025
bc62328
Merge pull request #2 from codyzhao2770/distribution
codyzhao2770 Jul 28, 2025
4d9b895
implemented connection group
Jul 30, 2025
2817964
Merge pull request #3 from codyzhao2770/cgroup
codyzhao2770 Jul 30, 2025
7a33e74
done distribution tenant, other small changes
Aug 1, 2025
bf12702
Merge pull request #4 from codyzhao2770/tenant
codyzhao2770 Aug 1, 2025
c24333e
name prop and import changes
Aug 1, 2025
3990ebe
conforming to lint and unit tests
Aug 5, 2025
c84a522
read me
Aug 5, 2025
1bf6c8c
improved comments and fixed multi-tenant prop checking bug
Aug 6, 2025
2cfd306
integration tests for connection group and distribution tenant
Aug 6, 2025
97a5ce8
integ tests and snapshots
Aug 8, 2025
882a0f0
integration test for mtd multiple tenants
Aug 11, 2025
2adccf9
updated mtdistribution extensive integ test
Aug 13, 2025
4834e22
Merge branch 'main' into saas-new-constructs
codyzhao2770 Aug 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"Resources": {
"connectiongroup567F24FE": {
"Type": "AWS::CloudFront::ConnectionGroup",
"Properties": {
"Enabled": true,
"Ipv6Enabled": true,
"Name": "integ-connection-group-basicconnection-group"
}
}
},
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading