File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
infrastructure/terraform/dns Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,6 @@ resource "aws_eip" "eks-ingress-b" {
3
3
lifecycle {
4
4
prevent_destroy = true
5
5
}
6
+ }
7
+ resource "aws_eip" "eks-ingress-private" {
6
8
}
Original file line number Diff line number Diff line change @@ -10,4 +10,13 @@ output "eks-ingress-ip" {
10
10
output "eks-ingress-name" {
11
11
value = [aws_eip . eks-ingress-b . allocation_id ]
12
12
description = " Static EIB IP address for eks ingress load balancer. This is where the DNS entries point to"
13
+ }
14
+
15
+ output "eks-ingress-private-ip" {
16
+ value = [aws_eip . eks-ingress-private . public_ip ]
17
+ description = " Static EIB IP address for eks ingress (private services)."
18
+ }
19
+ output "eks-ingress-private-name" {
20
+ value = [aws_eip . eks-ingress-private . allocation_id ]
21
+ description = " Static EIB IP address for eks ingress (private services)."
13
22
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ locals {
19
19
" push.api" ,
20
20
" analytics" ,
21
21
" rabbitmq" ,
22
- " ocpi-neogy.ex " , # Remove this when in production, replaced by neogy.ocpi.ex
22
+ " anlytics.beta " ,
23
23
" neogy.ocpi.io" ,
24
24
" driwe.ocpi.io" ,
25
25
" google.spreadsheets.io"
You can’t perform that action at this time.
0 commit comments