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 880136e commit 0c0ff1fCopy full SHA for 0c0ff1f
src/baas/scf/index.js
@@ -72,9 +72,7 @@ class Scf {
72
functionConfigure['VpcConfig.SubnetId'] = inputs.vpcConfig.subnetId;
73
}
74
75
- if (inputs.eip) {
76
- functionConfigure['EipConfig.EipFixed'] = 'TRUE';
77
- }
+ functionConfigure['EipConfig.EipFixed'] = inputs.eip === true ? 'TRUE' : 'FALSE';
78
if (inputs.layers) {
79
inputs.layers.forEach((item, index) => {
80
functionConfigure[`Layers.${index}.LayerName`] = item.name;
0 commit comments