From 5c73a0a57865556fc8f1735efbf3b9826e369368 Mon Sep 17 00:00:00 2001 From: Nemo Date: Sat, 13 Jun 2020 19:06:48 +0530 Subject: [PATCH] Adds GCP Sydney --- CHANGELOG.md | 8 +++++++- locals.tf | 4 ++++ outputs.tf | 16 ++++++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7add5a1..0f33a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.2][1.2.2] - 2020-06-13 + +### Added +- New Looker IP for GCP/Sydney region + ## [1.2.1][1.2.1] - 2020-05-15 ### Added @@ -51,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial Release -[unreleased]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.2.1...HEAD +[unreleased]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.2.2...HEAD +[1.2.1]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.2.1...1.2.2 [1.2.1]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.1.2...1.2.0 [1.1.2]: https://github.com/captn3m0/terraform-data-looker-ips/compare/1.1.1...1.1.1 diff --git a/locals.tf b/locals.tf index 79fbdae..82165d9 100644 --- a/locals.tf +++ b/locals.tf @@ -41,6 +41,10 @@ locals { "35.185.184.54" ] + gcp-australia-southeast1 = [ + "35.189.54.47" + ] + us = [ "54.208.10.167", diff --git a/outputs.tf b/outputs.tf index f5bb036..d768476 100644 --- a/outputs.tf +++ b/outputs.tf @@ -134,6 +134,12 @@ output "gcp_asia_southeast1_ips" { value = "${local.gcp-asia-southeast1}" } +// Sydney +output "gcp_australia_southeast1" { + description = "Looker IPs for instances hosted in GCP (Sydney / australia-southeast1)" + value = "${local.gcp-australia-southeast1}" +} + ##### GCP CIDRs ##### @@ -173,6 +179,12 @@ output "gcp_asia_southeast1_cidr" { value = ["${formatlist("%s/32", local.gcp-us-east1)}"] } +// Singapore +output "gcp_australia_southeast1" { + description = "Looker CIDRs for instances hosted in GCP (Sydney / australia-southeast1)" + value = ["${formatlist("%s/32", local.gcp-australia-southeast1)}"] +} + ##### GCP Common #### output "gcp_cidr" { @@ -185,6 +197,7 @@ output "gcp_cidr" { local.gcp-europe-west2, local.gcp-europe-west3, local.gcp-asia-southeast1, + local.gcp-australia-southeast1 ))}" } @@ -199,6 +212,7 @@ output "gcp_ips" { local.gcp-europe-west2, local.gcp-europe-west3, local.gcp-asia-southeast1, + local.gcp-australia-southeast1 )}" } @@ -214,6 +228,7 @@ output "all_cidr" { local.gcp-europe-west2, local.gcp-europe-west3, local.gcp-asia-southeast1, + local.gcp-australia-southeast1, local.us, local.ca, local.as, @@ -235,6 +250,7 @@ output "all_ips" { local.gcp-europe-west2, local.gcp-europe-west3, local.gcp-asia-southeast1, + local.gcp-australia-southeast1, local.us, local.ca, local.as,