Skip to content

Commit

Permalink
chore: fix java app init template
Browse files Browse the repository at this point in the history
Since s3 buckets now have DeletionPolicy
of "Retain" by default, the init template's
expectation file must be updated.

Related #1273
  • Loading branch information
Elad Ben-Israel committed Dec 13, 2018
1 parent 771fcba commit 5bf29d9
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
}
},
"BucketsBucket1B98A5B53": {
"Type": "AWS::S3::Bucket"
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain"
},
"MyFirstQueueFF09316A": {
"Type": "AWS::SQS::Queue",
Expand All @@ -66,13 +67,16 @@
}
},
"BucketsBucket351AD8978": {
"Type": "AWS::S3::Bucket"
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain"
},
"BucketsBucket237F4E9C5": {
"Type": "AWS::S3::Bucket"
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain"
},
"BucketsBucket4AEE1AAD9": {
"Type": "AWS::S3::Bucket"
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain"
},
"MyUserDC45028B": {
"Type": "AWS::IAM::User"
Expand Down Expand Up @@ -244,7 +248,8 @@
}
},
"BucketsBucket04F23AD6D": {
"Type": "AWS::S3::Bucket"
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain"
}
}
}

0 comments on commit 5bf29d9

Please sign in to comment.