Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(custom-resources): cross-environment call fails in opt-in region #26917

Merged
merged 35 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ae65409
Merge pull request #2 from aws/main
scanlonp Sep 21, 2022
2ebdad8
Merge branch 'aws:main' into main
scanlonp Jul 18, 2023
0875c95
Merge branch 'aws:main' into main
scanlonp Aug 22, 2023
fa997db
Merge branch 'aws:main' into main
scanlonp Aug 25, 2023
01a589c
Merge branch 'aws:main' into main
scanlonp Aug 28, 2023
f20b0a9
match sdk region with assumeRole call
scanlonp Aug 28, 2023
85360d8
add integ test
scanlonp Aug 29, 2023
fb6fcdb
broaden undefined when region is not specified
scanlonp Aug 29, 2023
92bc090
Documentation
scanlonp Aug 29, 2023
ab93f73
synthetics integ key change after handler edit
scanlonp Aug 29, 2023
b27cc92
custom resource integ test
scanlonp Aug 29, 2023
fa742d5
add notes on how to run test, minor edits
scanlonp Aug 29, 2023
17db7a6
Merge branch 'main' into scanlonp/awsCustomResource-sts-region
scanlonp Aug 29, 2023
6a6e425
clean synthetics integ test
scanlonp Aug 30, 2023
ebdeafa
Merge branch 'scanlonp/awsCustomResource-sts-region' of github.com:sc…
scanlonp Aug 30, 2023
38122d8
Merge branch 'main' into scanlonp/awsCustomResource-sts-region
vinayak-kukreja Aug 30, 2023
f1d7bb3
cr-athena integ snapshot
scanlonp Aug 30, 2023
56beb59
cr-vpc integ
scanlonp Aug 30, 2023
85988fd
elastic search integ tests (2)
scanlonp Aug 31, 2023
d9f731c
elastic loadbalancing snapshots dr
scanlonp Aug 31, 2023
828bab2
logs destinations snapshot
scanlonp Aug 31, 2023
d5c11b8
events targets snapshot
scanlonp Aug 31, 2023
e7d0512
global accelerator snapshot
scanlonp Aug 31, 2023
a6bf7e8
open search service snapshots (2)
scanlonp Aug 31, 2023
bbedbbb
another open search service snapshot
scanlonp Aug 31, 2023
ae02fec
s3 snapshop
scanlonp Aug 31, 2023
62c0b34
route53 snapshot
scanlonp Aug 31, 2023
00c253d
aws custom resource snapshot
scanlonp Aug 31, 2023
6a10bef
readme update of account numbers
scanlonp Aug 31, 2023
48dafba
change example acct numbers
scanlonp Aug 31, 2023
06a684b
custom resrouce cross acct integ snapshot dr
scanlonp Aug 31, 2023
950a9bc
Merge branch 'main' into scanlonp/awsCustomResource-sts-region
scanlonp Aug 31, 2023
e49f4ef
fix readme
scanlonp Aug 31, 2023
1d27ab9
Merge branch 'scanlonp/awsCustomResource-sts-region' of github.com:sc…
scanlonp Aug 31, 2023
e7d146a
Merge branch 'main' into scanlonp/awsCustomResource-sts-region
scanlonp Aug 31, 2023
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "34.0.0",
"files": {
"21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22": {
"source": {
"path": "CrossAccountCRTestDefaultTestDeployAssert024923DB.template.json",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22.json",
"assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
}
}
}
},
"dockerImages": {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"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."
}
]
}
}
}

Large diffs are not rendered by default.

Loading
Loading