We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79a483d commit 65affafCopy full SHA for 65affaf
src/modules/scf/utils.js
@@ -253,6 +253,24 @@ const formatFunctionInputs = (region, inputs) => {
253
functionInputs['DeadLetterConfig.FilterType'] = inputs.deadLetter.filterType;
254
}
255
256
+
257
+ // cfs config
258
+ if (inputs.cfsConfig) {
259
+ functionInputs.CfsConfig = {
260
+ CfsInsList: [],
261
+ };
262
+ inputs.cfsConfig.forEach((item) => {
263
+ functionInputs.CfsConfig.CfsInsList.push({
264
+ CfsId: item.cfsId,
265
+ MountInsId: item.MountInsId || item.cfsId,
266
+ LocalMountDir: item.localMountDir,
267
+ RemoteMountDir: item.remoteMountDir,
268
+ UserGroupId: item.userGroupId || 10000,
269
+ UserId: item.userId || 10000,
270
+ });
271
272
+ }
273
274
return functionInputs;
275
};
276
0 commit comments