Skip to content

Commit f2befc5

Browse files
committed
Updating the infrastructure files for the stack
Accidentally rolled back my changes to the AWS infrastructure. I've now fixed them, and pushing to production. Will pull them into dev.
1 parent 90f11cc commit f2befc5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ const options = {
7777
};
7878

7979
const swaggerDocument = YAML.load('./openapi.yaml');
80-
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerDocument, options));
80+
app.use('/api-docs',
81+
swaggerUi.serve,
82+
swaggerUi.setup(swaggerDocument, options));
8183

8284
// Locations for v1.5 files:
8385
const v15index = require('./v1.5/routes/index'); // default route

infrastructure/cloudformation-template.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ Resources:
103103
Properties:
104104
ServiceName: !Sub 'neoapi-${Environment}'
105105
SourceConfiguration:
106+
AuthenticationConfiguration:
107+
AccessRoleArn: !GetAtt AppRunnerAccessRole.Arn
106108
ImageRepository:
107109
ImageIdentifier: !Ref ImageUri
108110
ImageConfiguration:

0 commit comments

Comments
 (0)