Compare commits

...

4 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
5 changed files with 17 additions and 22 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,14 @@ 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)
@ -15,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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
@ -173,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.8"
version = "v2.0.9"
}
resource "aws_security_group_rule" "allow_all_from_looker_aws_us" {

View File

@ -74,7 +74,6 @@ locals {
"34.105.209.44",
"34.89.124.139",
"34.105.219.154",
"34.105.219.154",
"34.142.123.96",
"34.142.77.18",
"34.105.131.133",
@ -178,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",

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,