Skip to content

Commit 65f1433

Browse files
authored
Merge pull request #65 from ExpediaGroup/issue-36
Fixes #36
2 parents e281904 + 59888f1 commit 65f1433

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
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).
55

6+
## [2.0.1] - TBD
7+
8+
### Added
9+
- Fixed problem adding new remote_metastores. - see [#36](https://github.com/ExpediaGroup/apiary-federation/issues/36)
10+
611
## [2.0.0] - 2019-07-09
712

813
### Added

endpoints.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ resource "aws_vpc_endpoint" "remote_metastores" {
4343
data "external" "endpoint_dnsnames" {
4444
count = "${length(var.remote_metastores)}"
4545
program = ["bash", "${path.module}/scripts/endpoint_dns_name.sh", "${aws_vpc_endpoint.remote_metastores.*.id[count.index]}", "${var.aws_region}"]
46+
depends_on = ["aws_vpc_endpoint.remote_metastores"] #without explicit dependency, adding additional remote metastores fails, see https://github.com/ExpediaGroup/apiary-federation/issues/36.
4647
}
4748

4849
data "template_file" "remote_metastores_yaml" {

0 commit comments

Comments
 (0)