diff --git a/CHANGELOG.md b/CHANGELOG.md index 03908be..30d995a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased][unreleased] +## [2.0.4] - 2021-11-07 +### Removed +- 1 IP removed for `gcp-us-east1` +### Added +- 1 IP added for `gcp-us-west1` +- 1 IP added for `gcp-asia-northeast1` +- 6 IPs added for `eks-ca-central-1` +- 6 IPs added for eks-eu-central-1 + ## [2.0.3] - 2021-07-13 ### Removed - 1 IP removed for `gcp-us-west1` diff --git a/README.md b/README.md index bfc4b80..3a12cb1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Please make sure to read the Looker documentation before you start using this mo ```hcl module "looker-ips" { source = "captn3m0/looker-ips/data" - version = "v2.0.3" + version = "v2.0.4" } resource "aws_security_group_rule" "allow_all_from_looker_aws_us" { diff --git a/locals.tf b/locals.tf index cfadedf..791632d 100644 --- a/locals.tf +++ b/locals.tf @@ -1,10 +1,8 @@ locals { - # South Carolina gcp-us-east1 = [ "35.196.243.26", "35.196.36.95", - "35.196.227.117" ] # Northern Virginia @@ -42,7 +40,8 @@ locals { "35.247.61.151", "34.82.193.215", "35.233.222.226", - "35.185.199.172" + "35.185.199.172", + "35.185.212.2", ] # Canada / Montreal @@ -62,7 +61,7 @@ locals { "34.89.127.51", "34.105.209.44", "34.89.124.139", - "34.105.219.154" + "34.105.219.154", ] # Frankfurt @@ -90,11 +89,12 @@ locals { # Tokyo, Japan gcp-asia-northeast1 = [ "34.84.255.194", + "35.221.107.211", ] # Singapore gcp-asia-southeast1 = [ - "35.185.184.54" + "35.185.184.54", ] # Jakarta, Indonesia @@ -160,39 +160,46 @@ locals { eks-us-west-2 = [ "44.237.129.32", "54.184.191.250", - "35.81.99.30" + "35.81.99.30", ] - eks-ca-central-1 = [ "52.60.157.61", "35.182.169.25", "52.60.59.128", + "35.182.207.128", + "15.222.172.64", + "3.97.27.51", + "35.183.191.133", + "15.222.86.123", + "52.60.52.14", ] - eks-eu-central-1 = [ "18.157.231.108", "18.157.207.33", "18.157.64.198", + "18.198.116.133", + "3.121.148.178", + "3.126.54.154", + "18.193.187.100", + "18.196.108.86", + "18.198.157.149", ] eks-ap-northeast-1 = [ "54.250.91.57", "13.112.30.110", "54.92.76.241", ] - eks-ap-southeast-2 = [ "13.238.132.174", "3.105.238.71", "3.105.113.36", ] - eks-sa-east-1 = [ "54.232.58.181", "54.232.58.98", "177.71.134.208", ] - azure-us-east2 = [ - "52.147.190.201" + "52.147.190.201", ] }