Skip to content

Commit d6c6d03

Browse files
authored
Create config directory in terraform templates (#191)
1 parent d3aa269 commit d6c6d03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/performance-test/airnode-feed/cloudformation.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"EntryPoint": [
3838
"/bin/sh",
3939
"-c",
40-
"echo -e $SECRETS_ENV >> ./config/secrets.env && wget -O - <AIRNODE_FEED_CONFIG_URL> >> ./config/airnode-feed.json && node dist/src/index.js"
40+
"mkdir config && echo -e $SECRETS_ENV >> ./config/secrets.env && wget -O - <AIRNODE_FEED_CONFIG_URL> >> ./config/airnode-feed.json && node dist/src/index.js"
4141
],
4242
"LogConfiguration": {
4343
"LogDriver": "awslogs",

packages/performance-test/signed-api/cloudformation.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"EntryPoint": [
4545
"/bin/sh",
4646
"-c",
47-
"wget -O - <SIGNED_API_CONFIG_URL> >> ./config/signed-api.json && node dist/src/index.js"
47+
"mkdir config && wget -O - <SIGNED_API_CONFIG_URL> >> ./config/signed-api.json && node dist/src/index.js"
4848
],
4949
"PortMappings": [
5050
{

packages/signed-api/deployment/cloudformation-template.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"EntryPoint": [
4545
"/bin/sh",
4646
"-c",
47-
"wget -O - <SIGNED_API_CONFIGURATION_URL> >> ./config/signed-api.json && node dist/src/index.js"
47+
"mkdir config && wget -O - <SIGNED_API_CONFIGURATION_URL> >> ./config/signed-api.json && node dist/src/index.js"
4848
],
4949
"PortMappings": [
5050
{

0 commit comments

Comments
 (0)