Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit f59843e

Browse files
committed
cannot use aws-specific types for blank values
1 parent 8a5f13b commit f59843e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

templates/git2s3.template

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
},
132132
"VPCId": {
133133
"Description": "Id of the VPC the DL Zip lambda should run in",
134-
"Type": "AWS::EC2::VPC::Id",
134+
"Type": "String",
135135
"Default": ""
136136
},
137137
"VPCCidrRange": {
@@ -141,7 +141,7 @@
141141
},
142142
"SubnetIds": {
143143
"Description": "SubnetIds the DL Zip lambda should run in",
144-
"Type": "List<AWS::EC2::Subnet::Id>",
144+
"Type": "CommaDelimitedList",
145145
"Default": ""
146146
},
147147
"ScmHostnameOverride": {
@@ -1018,6 +1018,7 @@
10181018
}
10191019
},
10201020
"ZipDlLambdaSecurityGroup": {
1021+
"Condition": "ShouldRunInVPC",
10211022
"Type": "AWS::EC2::SecurityGroup",
10221023
"Properties": {
10231024
"GroupDescription": "Security Group to allow the lambda to access the git service",

0 commit comments

Comments
 (0)