CloudFormation Tempate - Choose Other private IP addresses

0

I am writing a cloudformation template to create a network load balancer. For registered targets, I need to specify 'Other private IP address' and not an IP with the VPC. I didn't see any option to do that in the template anatomy. Can someone please assist with this issue?

feita há 2 anos1229 visualizações
3 Respostas
0
Resposta aceita

Hello

You can use the Example below, ip – Targets are registered as IP addresses. You can use any IPv4 address from the load balancer’s VPC CIDR for targets within load balancer’s VPC and any IPv4 address from the RFC 1918 ranges (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16) or the RFC 6598 range (100.64.0.0/10) for targets located outside the load balancer’s VPC (this includes Peered VPC, EC2-Classic, and on-premises targets reachable over Direct Connect or VPN).

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Target Group for the Load balancer'

# target group Load balancer
Resources:

  NetworkLoadBalancerTargetGroup:
    Type: AWS::ElasticLoadBalancingV2::TargetGroup
    Properties:
      Name: "NlbTargetGroup"
      Port: 80
      Protocol: HTTP
      VpcId: "vpc-XXXXXX"
      TargetGroupAttributes:
        - Key: deregistration_delay.timeout_seconds
          Value: 300
      TargetType: ip
      Targets: # list of the primary IP addresses of the Network interface(s) associated with the VPC endpoint
         - Id: 172.31.0.XX
           Port: 80
         - Id: 172.31.0.XX
           Port: 80
profile picture
GK
respondido há 2 anos
0

Thank you!

respondido há 2 anos
0

This only seems to work for usecases where the IP is in the same subnet. It errors out stating the Availability Zones for IP address must be all when not within the VPC (which is the case when we do it manually in the console)

AWS
PK
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas