Questions tagged [amazon-app-runner]

54 questions
19
votes
2 answers

How to choose between AWS Elastic Beanstalk and App Runner services?

Similarities that I see are: They are PaaS offerings. They make AWS more similar to Heroku. They abstract away load balancing and auto scaling stuff. The only difference that I see is that App Runner uses docker but Elastic beanstalk may not use…
16
votes
0 answers

Why is my AWS App Runner application not deploying?

I'm trying to deploy an application with AWS App Runner and initially had a successful deploy. However, as I make changes to the app, then push to GitHub, the application deployment begins, runs for about 20 minutes then fails. Here are the last few…
JSK NS
  • 3,346
  • 2
  • 25
  • 42
6
votes
1 answer

Does AWS App Runner properly support WebSocket connections?

My AWS App Runner application is running normally, 12-19-2021 05:28:15 PM [AppRunner] Service status is set to RUNNING. 12-19-2021 05:28:15 PM [AppRunner] Service creation completed successfully. 12-19-2021 05:28:14 PM [AppRunner] Successfully…
6
votes
3 answers

AWS App Runner "Create Failed" on health check

I'm creating my first app on AWS App Runner. I have a simple nginx Docker image that works locally by serving html on localhost:8080. When I try to deploy it, the result is "Create Failed". Upon digging into the CloudWatch logs, I see that the…
5
votes
1 answer

After jibBuildTar, what command to use to load to AWS ECR?

Is there an AWS CLI command to simply load my image tar to AWS? (I do not have docker on my computer at all nor do I want to increase the image size of our CD pipeline as I prefer to keep it very very small since it adds to the time to start in…
Dean Hiller
  • 19,235
  • 25
  • 129
  • 212
5
votes
1 answer

How to use CloudFront as reverse proxy to my App Runner service?

I have an App Runner service running a NodeJS/Express server which is a REST API. App Runner has given me the following end point - https://example_server_random_id.awsapprunner.com The frontend is developed using React and deployed in S3 as a…
4
votes
3 answers

Does AWS App Runner support accessing values in secrets manager

I'm using Terraform to create both the App Runner instance and Secrets manager. I'm getting a socket timeout error when trying to access secret manager from App Runner. I'm new to App runner but I assumed that App runner would have access to secrets…
dtucker1914
  • 499
  • 1
  • 8
  • 18
4
votes
1 answer

Remote connection / SSH'ing into a deployed AWS AppRunner container

Is it possible to gain access to the container shell of an app I have deployed within AWS AppRunner? I realise the service is designed to be very AWS managed, however the utility of being able to see inside your deployed container is often…
solarflare
  • 880
  • 2
  • 8
  • 23
4
votes
0 answers

AWS Apprunner with route53 mapping

I was trying to deploy docker service using aws app-runner. Deploying a service and running it is very street forward. Once I deployed the app, aws gives me url to access my service. Now I want to route traffic from my domain to this url. In route…
Ezd
  • 331
  • 3
  • 10
3
votes
1 answer

AWS App Runner health check fails even though appropriate port is exposed

I'm trying to deploy my application to AWS App Runner and even though everything seems okay it still fails to deploy because the health check fails. I'm trying to deploy from a source code repository so AWS builds an image for me. I checked the…
Adam Arold
  • 29,285
  • 22
  • 112
  • 207
3
votes
0 answers

Can't update AWS App Runner after creation

The app runner is successfully created and works fine, but any attempt to change the configuration gets an error. It seems that the healthcheck does not work, although after creation everything works fine. [AppRunner] Service status is set to…
3
votes
1 answer

AWS App Runner - Error in assuming instance role

When running my TF script to create an AWS App Runner service I'm getting this error: InvalidRequestException: Error in assuming instance role arn:aws:iam::000000000000:role/MyAppRunnerServiceRole I created the role policy trust using…
3
votes
0 answers

503 : Service Unavailable : 'upstream connect error or disconnect/reset before headers. reset reason: connection termination' on AWS

I have 4 node microservices, of which 3 are deployed in AWS AppRunner and a main orchestrator service which is deployed in AWS Elastic Beanstalk (HTTPS Configured for all the services). The flow normally works like the orchestrating node service…
3
votes
1 answer

AWS App Runner service cannot access Internet when added to a VPC

I've set up an AWS App Runner service, which works fine. Currently for networking it's configured as public access, but I'd like to change this to a VPC so that I can connect the service to an RDS instance without having to open the database up to…
gregdev
  • 1,863
  • 3
  • 23
  • 28
3
votes
4 answers

How can I create an AWS AppRunner role that allows my application to query from DynamoDB?

I have a small app that reads from DynamoDB and is deployed with AppRunner. I'm having trouble giving AppRunner access to Dynamo. I created an IAM role with the policies I think I need but it does not show up when I open the security configuration…
1
2 3 4