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.
2 parents 3b473c7 + 1e1290a commit 3375048Copy full SHA for 3375048
libs/asr-providers/aws.js
@@ -34,6 +34,7 @@ module.exports = class AWSAsrProvider extends AbstractASRProvider{
34
"vpc": "",
35
"subnet": "",
36
"usePrivateAddress": false,
37
+ "assignPrivateAddressOnly": false,
38
"securityGroup": "CHANGEME!",
39
"maxRuntime": -1,
40
"maxUploadTime": -1,
@@ -190,6 +191,9 @@ module.exports = class AWSAsrProvider extends AbstractASRProvider{
190
191
192
if (this.getConfig("usePrivateAddress")) {
193
args.push("--amazonec2-use-private-address");
194
+ if(this.getConfig("assignPrivateAddressOnly")) {
195
+ args.push("--amazonec2-private-address-only");
196
+ }
197
}
198
199
if (this.getConfig("engineInstallUrl")){
0 commit comments