Skip to content

Commit

Permalink
Merge branch 'main' into ref_task_def_ecs
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 18, 2024
2 parents 44f4165 + 4aa117b commit 4b90a15
Show file tree
Hide file tree
Showing 19 changed files with 876 additions and 63 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/v2-pull-request.yml

This file was deleted.

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.

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,102 @@
{
"Resources": {
"AllStorageClasses128KB8241761": {
"Type": "AWS::S3::Bucket",
"Properties": {
"LifecycleConfiguration": {
"Rules": [
{
"Status": "Enabled",
"Transitions": [
{
"StorageClass": "DEEP_ARCHIVE",
"TransitionInDays": 30
}
]
},
{
"ObjectSizeGreaterThan": 200000,
"ObjectSizeLessThan": 300000,
"Status": "Enabled",
"Transitions": [
{
"StorageClass": "ONEZONE_IA",
"TransitionInDays": 30
}
]
}
],
"TransitionDefaultMinimumObjectSize": "all_storage_classes_128K"
}
},
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
},
"VariesByStorageClassCD3C88D5": {
"Type": "AWS::S3::Bucket",
"Properties": {
"LifecycleConfiguration": {
"Rules": [
{
"Status": "Enabled",
"Transitions": [
{
"StorageClass": "DEEP_ARCHIVE",
"TransitionInDays": 30
}
]
},
{
"ObjectSizeGreaterThan": 200000,
"ObjectSizeLessThan": 300000,
"Status": "Enabled",
"Transitions": [
{
"StorageClass": "ONEZONE_IA",
"TransitionInDays": 30
}
]
}
],
"TransitionDefaultMinimumObjectSize": "varies_by_storage_class"
}
},
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
}
},
"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."
}
]
}
}
}
Loading

0 comments on commit 4b90a15

Please sign in to comment.