diff --git a/README.md b/README.md index 2ea8cba..c096bfa 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ # Overview DMR++ files generator is a cloud based activity that generate DMRPP files from netCDF4 and HDF files ## 📖 Documentation +- Release note [v1.0.6](https://ghrcdaac.github.io/dmrpp-generator/). - Release note [v1.0.5](https://ghrcdaac.github.io/dmrpp-generator/). - Release note [v1.0.4](https://ghrcdaac.github.io/dmrpp-generator/). diff --git a/docs/index.md b/docs/index.md index 0681065..a9d32ca 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,5 +1,10 @@ -# 📖 Release note 5 +# 📖 Release notes + +## v1.0.6 +This release: +* Fixes the issue of AWS provider [issue#10](https://github.com/ghrcdaac/dmrpp-generator/issues/10) +* Reads from `url_path` key passed in the payload. Also, the provider was taking off from the main.tf ## v1.0.5 This release fixes the problem adding a type of meta data for the dmrpp file and also changing some spacings. @@ -7,6 +12,22 @@ This release fixes the problem adding a type of meta data for the dmrpp file and ## v1.0.4 This release fixes the problem of assuming the granuleId is the same as the file name [issue#9](https://github.com/ghrcdaac/dmrpp-generator/issues/9) +## 🏃 Migration Steps to v1.0.6 +Change the source url in your terraform file to point to v1.0.6 release +```code +module "dmrpp-generator" { +source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.0.6/dmrpp-generator.zip" +... +} +``` +Change the value of your docker image to point to v1.0.6 tag +```code +module "dmrpp-generator" { +... +docker_image = "ghrcdaac/dmrpp-generator:v1.0.6" +} + +``` ## 🏃 Migration Steps to v1.0.5 Change the source url in your terraform file to point to v1.0.5 release @@ -16,7 +37,7 @@ source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.0.5/d ... } ``` -Change the value of your docker image to point to v1.0.4 tag +Change the value of your docker image to point to v1.0.5 tag ```code module "dmrpp-generator" { ... @@ -80,4 +101,4 @@ The workflow is accepting the whole payload ], "Next": "" } -``` \ No newline at end of file +``` diff --git a/main.tf b/main.tf index 06eb201..e228eba 100644 --- a/main.tf +++ b/main.tf @@ -5,12 +5,6 @@ terraform { } } -provider "aws" { - region = var.region - profile = var.aws_profile -} - - module "dmrpp_service" { source = "./modules/dmrpp_service" prefix = var.prefix