Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform/modules/services/eb_app/eb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "aws_elastic_beanstalk_environment" "eb-environment" {

# the next line IS NOT RANDOM,
# see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
solution_stack_name = "64bit Amazon Linux 2 v3.8.0 running Docker"
solution_stack_name = "64bit Amazon Linux 2 v3.8.3 running Docker"

# There are a LOT of settings, see here for the basic list:
# https://is.gd/vfB51g
Expand Down Expand Up @@ -161,4 +161,4 @@ resource "aws_elastic_beanstalk_application_version" "latest" {
description = "Application version created by terraform (${var.container-tag})"
bucket = aws_s3_bucket.eb-app-docker-bucket.id
key = aws_s3_object.eb-object.id
}
}