This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit cd2cc242e39577f8a5be9e9b41daa24367cbc3fc
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Jun 5 18:00:47 2023 +0200

    AWS S3 - Added Infra configuration file for creating bucket - Cloudformation
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 infra/aws-s3/cloudformation/aws-s3.yaml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/infra/aws-s3/cloudformation/aws-s3.yaml 
b/infra/aws-s3/cloudformation/aws-s3.yaml
new file mode 100644
index 00000000..cc1cda13
--- /dev/null
+++ b/infra/aws-s3/cloudformation/aws-s3.yaml
@@ -0,0 +1,12 @@
+Parameters:
+  BucketName:
+    Type: String
+    Description: The bucket name.
+
+Resources:
+  S3Bucket:
+    Type: 'AWS::S3::Bucket'
+    DeletionPolicy: Retain
+    Properties:
+      BucketName: 
+        Ref: BucketName

Reply via email to