Compare commits

...

5 Commits

Author SHA1 Message Date
Nemo 213a3ca2bb
Create FUNDING.yml 2022-05-30 14:52:58 +05:30
Nemo 7bbd04a490 v3.0.0 2022-02-02 18:00:46 +05:30
Nemo dae566c226 Remove a duplicate IP address 2022-01-12 13:57:10 +05:30
Nemo 15af795883 [docs] Fix link in CHANGELOG 2022-01-11 11:38:02 +05:30
Nemo fed66d8609 New IPs 2022-01-11 11:12:18 +05:30
5 changed files with 48 additions and 24 deletions

3
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,3 @@
ko_fi: captn3m0
liberapay: captn3m0
github: captn3m0

View File

@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased][unreleased]
## [3.0.0] - 2022-02-02
### Removed
- IPs/CIDRs for instances hosted on Amazon EKS in us-east-2 region (Ohio) have been removed.
## [2.0.9] - 2022-01-12
### Removed
- Removed a duplicate IP address from `gcp-europe-west2` (London)
## [2.0.8] - 2022-01-11
### Added
- 3 new IPs added to `gcp-us-east4` (Ashburn, Northern Virginia)
- 3 new IPs added to `gcp-us-central1` (Council Bluffs, Iowa)
- 4 new IPs added to `gcp-us-west1` (The Dalles, Oregon)
- 5 new IPs added to `gcp-europe-west2` (London, England, UK)
- 3 new IPs added to `gcp-europe-west3` (Frankfurt, Germany)
- 1 new IP added to `gcp-asia-northeast1` (Tokyo, Japan)
- 1 new IP added to `eks-eu-central-1` (Frankfurt)
## [2.0.7] - 2021-12-27
### Added
- 3 new IPs added to `gcp-us-west1`
@ -164,7 +182,10 @@ 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/v2.0.7...HEAD
[unreleased]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v3.0.0...HEAD
[3.0.0]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.9...v3.0.0
[2.0.9]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.8...v2.0.9
[2.0.8]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.7...v2.0.8
[2.0.7]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.6...v2.0.7
[2.0.6]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.5...v2.0.6
[2.0.5]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.4...v2.0.5

View File

@ -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.7"
version = "v2.0.9"
}
resource "aws_security_group_rule" "allow_all_from_looker_aws_us" {

View File

@ -19,11 +19,17 @@ locals {
"35.245.177.112",
"34.86.214.226",
"35.221.30.177",
"35.221.62.218",
"34.86.34.135",
"35.236.240.168",
]
# Iowa
gcp-us-central1 = [
"34.70.246.244",
"34.69.207.176",
"34.70.128.74",
"35.239.118.197",
]
# Oregon
@ -43,7 +49,11 @@ locals {
"35.185.199.172",
"34.83.94.151",
"35.203.184.48",
"34.83.138.105"
"34.83.138.105",
"35.185.212.2",
"34.82.56.47",
"34.127.100.106",
"34.83.236.166",
]
# Canada / Montreal
@ -51,7 +61,7 @@ locals {
"35.203.16.100",
]
# London
# London, England, UK
gcp-europe-west2 = [
"35.246.117.58",
"35.246.10.206",
@ -64,12 +74,19 @@ locals {
"34.105.209.44",
"34.89.124.139",
"34.105.219.154",
"34.142.123.96",
"34.142.77.18",
"34.105.131.133",
"34.89.54.84",
]
# Frankfurt
# Frankfurt, Germany
gcp-europe-west3 = [
"34.89.161.120",
"35.198.128.126",
"34.159.224.187",
"34.159.10.59",
"34.159.72.77",
]
# Eemshaven, Netherlands
@ -92,6 +109,7 @@ locals {
# Tokyo, Japan
gcp-asia-northeast1 = [
"34.84.255.194",
"35.221.107.211",
]
# Singapore
@ -159,11 +177,6 @@ locals {
* that were created on or after 07/07/2020.
*/
eks-us-east-2 = [
"43.135.171.29",
"18.188.208.231",
"3.143.85.223",
]
eks-us-west-2 = [
"44.237.129.32",
"54.184.191.250",
@ -190,6 +203,7 @@ locals {
"18.193.187.100",
"18.196.108.86",
"18.198.157.149",
"18.193.187.100",
]
eks-ap-northeast-1 = [
"54.250.91.57",

View File

@ -335,11 +335,6 @@ output "eks_us_west_2" {
value = "${local.eks-us-west-2}"
}
output "eks_us_east_2" {
description = "IP addresses for instances hosted on Amazon EKS in us-east-2 region."
value = "${local.eks-us-east-2}"
}
output "eks_ca_central_1" {
description = "IP addresses for instances hosted on Amazon EKS in ca-central-1 region."
value = "${local.eks-ca-central-1}"
@ -370,11 +365,6 @@ output "eks_us_west_2_cidr" {
value = ["${formatlist("%s/32", local.eks-us-west-2)}"]
}
output "eks_us_east_2_cidr" {
description = "CIDRs for instances hosted on Amazon EKS in us-east-2 region"
value = ["${formatlist("%s/32", local.eks-us-east-2)}"]
}
output "eks_ca_central_1_cidr" {
description = "CIDRs for instances hosted on Amazon EKS in ca-central-1 region"
value = ["${formatlist("%s/32", local.eks-ca-central-1)}"]
@ -405,7 +395,6 @@ output "eks_ips" {
value = "${concat(
local.eks-us-west-2,
local.eks-us-east-2,
local.eks-ca-central-1,
local.eks-eu-central-1,
local.eks-ap-northeast-1,
@ -419,7 +408,6 @@ output "eks_cidr" {
value = "${formatlist("%s/32", concat(
local.eks-us-west-2,
local.eks-us-east-2,
local.eks-ca-central-1,
local.eks-eu-central-1,
local.eks-ap-northeast-1,
@ -490,7 +478,6 @@ output "all_cidr" {
local.au,
local.sa,
local.eks-us-west-2,
local.eks-us-east-2,
local.eks-ca-central-1,
local.eks-eu-central-1,
local.eks-ap-northeast-1,
@ -524,7 +511,6 @@ output "all_ips" {
local.de,
local.au,
local.sa,
local.eks-us-east-2,
local.eks-us-west-2,
local.eks-ca-central-1,
local.eks-eu-central-1,