Skip to content

Commit

Permalink
Add environment variables for data version.
Browse files Browse the repository at this point in the history
We want to be able to configure this through Terraform when necessary.
  • Loading branch information
JarrodBaker committed Oct 7, 2022
1 parent 7751454 commit dd19f2b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ ot {
}
dataVersion {
major = 22
major = ${?DATA_MAJOR}
minor = 02
minor = ${?DATA_MINOR}
patch = 0
patch = ${?DATA_PATCH}
}
}
}
Expand Down

0 comments on commit dd19f2b

Please sign in to comment.