diff --git a/docs/index.md b/docs/index.md index da446b0..0681065 100644 --- a/docs/index.md +++ b/docs/index.md @@ -9,7 +9,21 @@ This release fixes the problem of assuming the granuleId is the same as the file ## 🏃 Migration Steps to v1.0.5 -None +Change the source url in your terraform file to point to v1.0.5 release +```code +module "dmrpp-generator" { +source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.0.5/dmrpp-generator.zip" +... +} +``` +Change the value of your docker image to point to v1.0.4 tag +```code +module "dmrpp-generator" { +... +docker_image = "ghrcdaac/dmrpp-generator:v1.0.5" +} + +``` ## 🏃 Migration Steps to v1.0.4 Change the source url in your terraform file to point to v1.0.4 release