From 11f750598b670fb0a449da0265eb2a4a9a6dde88 Mon Sep 17 00:00:00 2001 From: Damir Suleymanov Date: Sat, 23 Dec 2023 16:33:40 +0100 Subject: [PATCH] Add simple CF template for testing --- src/test/resources/group.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/test/resources/group.json diff --git a/src/test/resources/group.json b/src/test/resources/group.json new file mode 100644 index 0000000..27d1ff1 --- /dev/null +++ b/src/test/resources/group.json @@ -0,0 +1,12 @@ +{ + "Resources": { + "EC2SG15C91": { + "Type": "AWS::EC2::SecurityGroup", + "Properties": { + "GroupName": "test-group", + "VpcId": "vpc-054b257d", + "GroupDescription": "test group for tests" + } + } + } +}