This commit is contained in:
Nemo 2022-02-02 18:00:46 +05:30
parent dae566c226
commit 7bbd04a490
3 changed files with 7 additions and 21 deletions

View File

@ -7,6 +7,10 @@ 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)
@ -178,8 +182,9 @@ 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.9...HEAD
[2.0.9]: https://github.com/captn3m0/terraform-data-looker-ips/compare/v2.0.9...v2.0.9
[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

View File

@ -177,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,