Skip to content

Commit 6f90f13

Browse files
authored
Remove env EC2_INSTANCES_ALLOWED_TYPES from special handling (#914)
1 parent 8c0bae8 commit 6f90f13

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

scripts/deployments/compose_stack_yml.bash

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ envsubst < .env.nosub > .env
8080
cp .env ..
8181
cp ../../docker-compose.yml ./docker-compose.simcore.yml
8282

83-
unset EC2_INSTANCES_ALLOWED_TYPES
8483
"$repo_basedir"/scripts/docker-stack-config.bash -e .env docker-compose.simcore.yml docker-compose.deploy.yml > ../../stack.yml
8584
#
8685
#

services/simcore/envsubst_escape_dollar_sign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
for line in lines:
1313
if len(line) > 0 and len(line.lstrip()) > 0:
1414
if line.lstrip()[0] != "#": # Ignore commented lines
15-
if "$" in line and not line.startswith("EC2_INSTANCES_ALLOWED_TYPES"):
15+
if "$" in line:
1616
ESCAPED_LINE = "".join(
1717
[
1818
x + "$${empty_var}"

0 commit comments

Comments
 (0)