From a9ab55ec65114116ee12c4b60904292b2a968e0a Mon Sep 17 00:00:00 2001 From: pradeepbhadani Date: Tue, 8 Jan 2019 11:00:02 +0000 Subject: [PATCH] fixes #41, Update doc and release 1.0.2 (#43) --- CHANGELOG.md | 5 +++-- README.md | 2 +- variables.tf | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18840a8..3d01f18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.2] - 2019-01-07 ### Changed -- Default access control for `local_metastore`. +- Default access control for `local_metastores`. +- Description of `local_metastores` variable ## [1.0.1] - 2018-12-14 diff --git a/README.md b/README.md index c97c66e..af59e49 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ For more information please refer to the main [Apiary](https://github.com/Expedi | graphite_prefix | Prefix addded to all metrics sent to Graphite from this Waggle Dance instance. | string | `waggle-dance` | no | | ingress_cidr | Generally allowed ingress CIDR list. | list | - | yes | | instance_name | Waggle Dance instance name to identify resources in multi-instance deployments. | string | `` | no | -| local_metastores | List of federated Metastores in current account. | list | `` | no | +| local_metastores | List of federated Metastore endpoints directly accessible on the local network. | list | `` | no | | memory | The amount of memory (in MiB) used to allocate for the Waggle Dance container. Valid values: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html | string | `4096` | no | | primary_metastore_host | Primary Hive Metastore hostname configured in Waggle Dance. | string | `localhost` | no | | primary_metastore_port | Primary Hive Metastore port | string | `9083` | no | diff --git a/variables.tf b/variables.tf index 51a070f..58e802e 100644 --- a/variables.tf +++ b/variables.tf @@ -117,7 +117,7 @@ variable "primary_metastore_whitelist" { #list of maps, example: [ {host="metastore1", port="9083", prefix="pre1", writable-whitelist="db1,test" }, {host="metastore2", port="9083", prefix="pre2", mapped-databases="dm,test" } ] variable "local_metastores" { - description = "List of federated Metastores in current account." + description = "List of federated Metastore endpoints directly accessible on the local network." type = "list" default = [] }