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/README.md b/README.md index d17dc63..da2c71b 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ To decide which one you need to use, you will need to know: | de\_cidr | Looker IP Addresses in Germany in CIDR (AWS only) | | gcp\_asia\_southeast1\_cidr | Looker CIDRs for instances hosted in GCP (South Carolina / us-east1) | | gcp\_asia\_southeast1\_ips | Looker IPs for instances hosted in GCP (Singapore / asia-southeast1) | +| gcp\_australia\_southeast1 | Looker CIDRs for instances hosted in GCP (Sydney / australia-southeast1) | | gcp\_cidr | Looker IP addresses everywhere in CIDR (GCP only) | | gcp\_europe\_west2\_cidr | Looker CIDRs for instances hosted in GCP (London / europe-west2) | | gcp\_europe\_west2\_ips | Looker IPs for instances hosted in GCP (London / europe-west2) | 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,