Skip to content

Commit

Permalink
Create config directory in terraform templates (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siegrift authored Jan 8, 2024
1 parent d3aa269 commit d6c6d03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/performance-test/airnode-feed/cloudformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"EntryPoint": [
"/bin/sh",
"-c",
"echo -e $SECRETS_ENV >> ./config/secrets.env && wget -O - <AIRNODE_FEED_CONFIG_URL> >> ./config/airnode-feed.json && node dist/src/index.js"
"mkdir config && echo -e $SECRETS_ENV >> ./config/secrets.env && wget -O - <AIRNODE_FEED_CONFIG_URL> >> ./config/airnode-feed.json && node dist/src/index.js"
],
"LogConfiguration": {
"LogDriver": "awslogs",
Expand Down
2 changes: 1 addition & 1 deletion packages/performance-test/signed-api/cloudformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"EntryPoint": [
"/bin/sh",
"-c",
"wget -O - <SIGNED_API_CONFIG_URL> >> ./config/signed-api.json && node dist/src/index.js"
"mkdir config && wget -O - <SIGNED_API_CONFIG_URL> >> ./config/signed-api.json && node dist/src/index.js"
],
"PortMappings": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"EntryPoint": [
"/bin/sh",
"-c",
"wget -O - <SIGNED_API_CONFIGURATION_URL> >> ./config/signed-api.json && node dist/src/index.js"
"mkdir config && wget -O - <SIGNED_API_CONFIGURATION_URL> >> ./config/signed-api.json && node dist/src/index.js"
],
"PortMappings": [
{
Expand Down

0 comments on commit d6c6d03

Please sign in to comment.