Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to pass Deployment Variables to deployed Docker images in ECS?

Ralph June 26, 2019

We have a simple pipeline that builds a Docker image with our app, pushes it to DockerHub, and finally deploys it to an ECS cluster.

 

Each cluster runs to a different environment (e.g. Development, Staging, Production), and we need to pass different environment variables for our application in each of these deployed environments. For example, the Google Analytics Tracker ID is different in Development and in Production.

 

We are using Deployment Variables in Bitbucket Pipelines to achieve this. For example:

 

  • Test Deployment
    • GOOGLE_ANALYTICS_ID = myDevId
  • Production Deployemtn
    • GOOGLE_ANALYTICS_ID = myProductionId

 

But we can't figure out this...

How do we take these values (e.g. $GOOGLE_ANALYTICS_ID) in the bitbucket-pipelines.yml file and pass them all the way through to our deployed Docker containers in ECS? What is the best practice approach?

We're new to CI/CD, so trying to figure out what the right approach is.

Do we need to build and deploy separate Docker images for each environment? Or is there a way to pass in these environment variables to ECS as part of deploying the Docker image?

 

Any help, reference articles, etc, is really appreciated. Thanks

1 answer

0 votes
Philip Hodder
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 2, 2019

Hello,

With Docker, you have two options for adding these environment variables.

  1. Build and deploy the separate Docker images with the different environment variables.
  2. Or create a single Dockerfile without the variable defined (or an empty value). And then pass in the environment specific variable at container startup time. You may need some ECS specific settings here that I'm not familiar with.

How do you normally deploy these images? There might be a field on the relevant deploy API that lets you set runtime environment variables at container startup.

Thanks,

Phil

Ralph September 6, 2019

Hi @Philip Hodder

Thanks for your reply. We ended up resolving this a few weeks ago, by passing in the Bitbucket Deployment variables into ECS as part of the TaskDefinition.

So the Docker images don't have any environment variables baked in -- otherwise we'd need to be building different images for each environment. They are specified at the time the container is spun up.

We're using the AWS CLI in our pipeline, but all ECS config is handled via CloudFormation templates.

Best,

Ralph

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events