Skip to content

Commit

Permalink
Fix typo (#37)
Browse files Browse the repository at this point in the history
* Fix typo
* Update CHANGELOG
  • Loading branch information
pradeepbhadani authored Nov 13, 2018
1 parent 84bf35f commit 4e9817a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ 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]

### Changed
- Fix typo `ssh_metastores`.


## [1.0.0] - 2018-10-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ data "template_file" "federation_yaml" {
primary_metastore_whitelist = "${join("",data.template_file.primary_metastore_whitelist.*.rendered)}"
local_metastores = "${join("",data.template_file.local_metastores_yaml.*.rendered)}"
remote_metastores = "${join("",data.template_file.remote_metastores_yaml.*.rendered)}"
ssh_metatstores = "${join("",data.template_file.ssh_metastores_yaml.*.rendered)}"
ssh_metastores = "${join("",data.template_file.ssh_metastores_yaml.*.rendered)}"
}
}

Expand Down
2 changes: 1 addition & 1 deletion templates/waggle-dance-federation.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ${primary_metastore_whitelist}
federated-meta-stores:
${local_metastores}
${remote_metastores}
${ssh_metatstores}
${ssh_metastores}

0 comments on commit 4e9817a

Please sign in to comment.