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?

已提问 2 年前1229 查看次数
3 回答
0
已接受的回答

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
已回答 2 年前
0

Thank you!

已回答 2 年前
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
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则