You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do not have solution stack attribute ignored. Beanstalk automatically updates environment due to managed actions being allowed, when we run terraform again, it downgrades it back to the version specified in the solution stack attribute.
I tried dynamic block approach, apparently lifecycle block isn't allowed to be dynamic.
The text was updated successfully, but these errors were encountered:
You can get the latest solution stack with a data object e.g.:
data "aws_elastic_beanstalk_solution_stack" "multi_docker" {
most_recent = true
name_regex = "^64bit Amazon Linux (.*)(v2\\.)(.*) Multi-container Docker (.*)$"
}
and use that. The only downside is that you will trigger the managed updates if you run terraform between release of the new solution stack and the time your application is updated
Currently we do not have solution stack attribute ignored. Beanstalk automatically updates environment due to managed actions being allowed, when we run terraform again, it downgrades it back to the version specified in the solution stack attribute.
I tried dynamic block approach, apparently lifecycle block isn't allowed to be dynamic.
The text was updated successfully, but these errors were encountered: