community.aws.elb_target_group 模块 – 管理应用或网络负载均衡器的目标组

注意

此模块是 community.aws 集合 (版本 9.0.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.aws。您需要其他需求才能使用此模块,有关详细信息,请参阅 需求

要在 playbook 中使用它,请指定:community.aws.elb_target_group

community.aws 1.0.0 中的新增功能

概要

需求

执行此模块的主机需要以下需求。

  • python >= 3.6

  • boto3 >= 1.28.0

  • botocore >= 1.31.0

参数

参数

注释

access_key

别名:aws_access_key_id,aws_access_key,ec2_access_key

字符串

AWS 访问密钥 ID。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以使用 AWS_ACCESS_KEY_IDAWS_ACCESS_KEYEC2_ACCESS_KEY 环境变量,优先级依次递减。

aws_access_keyprofile 选项是互斥的。

为了与 AWS botocore SDK 保持一致,aws_access_key_id 别名在 5.1.0 版本中添加。

ec2_access_key 别名已弃用,将在 2024-12-01 之后的发行版中删除。

EC2_ACCESS_KEY 环境变量的支持已弃用,将在 2024-12-01 之后的发行版中删除。

aws_ca_bundle

路径

用于验证 SSL 证书的 CA 捆绑包的位置。

也可以使用 AWS_CA_BUNDLE 环境变量。

aws_config

字典

用于修改 botocore 配置的字典。

可以在 AWS 文档中找到参数 https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html#botocore.config.Config

debug_botocore_endpoint_logs

布尔值

使用 botocore.endpoint 日志记录器来解析任务期间执行的唯一(而不是总计)"resource:action" API 调用,将集合输出到任务结果中的 resource_actions 密钥。使用 aws_resource_action 回调将输出到 playbook 期间执行的总列表。

也可以使用 ANSIBLE_DEBUG_BOTOCORE_LOGS 环境变量。

选项

  • false ← (默认)

  • true

deregistration_connection_termination

布尔值

community.aws 3.1.0 中新增

指示负载均衡器是否在注销超时结束时终止连接。

仅在附加到网络负载均衡器 (NLB) 时才支持使用此选项。

选项

  • false ← (默认)

  • true

deregistration_delay_timeout

整数

弹性负载均衡等待将注销目标的状态从“排水”更改为“未使用”的时间量。范围为 0-3600 秒。

endpoint_url

别名:ec2_url,aws_endpoint_url,s3_url

字符串

连接到的 URL,而不是默认的 AWS 端点。虽然这可用于连接到其他与 AWS 兼容的服务,但 amazon.aws 和 community.aws 集合仅针对 AWS 进行了测试。

也可以使用 AWS_URLEC2_URL 环境变量,优先级依次递减。

ec2_urls3_url 别名已弃用,将在 2024-12-01 之后的发行版中删除。

EC2_URL 环境变量的支持已弃用,将在 2024-12-01 之后的发行版中删除。

health_check_interval

整数

单个目标的健康检查之间的大致时间量(秒)。

health_check_path

字符串

目标上健康检查的目的地 ping 路径。必须定义路径才能设置健康检查。

需要设置 health_check_protocol 参数。

健康检查端口

字符串

负载均衡器在对目标执行健康检查时使用的端口。可以设置为“traffic-port”以匹配目标端口。

如果未定义,则默认为每个目标从负载均衡器接收流量的端口。

健康检查协议

字符串

负载均衡器在对目标执行健康检查时使用的协议。

选项

  • "http"

  • "https"

  • "tcp"

  • "tls"

  • "udp"

  • "tcp_udp"

  • "HTTP"

  • "HTTPS"

  • "TCP"

  • "TLS"

  • "UDP"

  • "TCP_UDP"

健康检查超时时间

整数

目标无响应的时间(以秒为单位),在此时间内,无响应表示健康检查失败。

健康阈值计数

整数

在将不健康的目标视为健康之前,需要连续成功进行的健康检查次数。

负载均衡算法类型

字符串

在 community.aws 3.2.0 中添加

要使用的负载均衡算法类型。

仅在与应用负载均衡器 (ALB) 一起使用时才支持更改负载均衡算法。

如果未设置,AWS 将默认为 round_robin

选项

  • "round_robin"

  • "least_outstanding_requests"

修改目标

布尔值

是否更改组中现有目标以匹配模块传递的内容

选项

  • false

  • true ← (默认)

名称

字符串 / 必需

目标组的名称。

端口

整数

目标接收流量的端口。除非您在注册目标时指定端口覆盖,否则将使用此端口。

statepresenttarget_typeinstanceipalb 时必需。

启用客户端 IP 保留

布尔值

在 community.aws 2.1.0 中添加

指示是否启用客户端 IP 保留。

如果目标组类型为 ip 地址且目标组协议为 tcptls,则默认为禁用。否则,默认为启用。对于 udptcp_udp 目标组,无法禁用客户端 IP 保留。

preserve_client_ip_enabled 仅受网络负载均衡器支持。

选项

  • false

  • true

配置文件

别名:aws_profile

字符串

用于身份验证的命名 AWS 配置文件。

有关命名配置文件的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html

也可以使用 AWS_PROFILE 环境变量。

profile 选项与 aws_access_keyaws_secret_keysecurity_token 选项互斥。

协议

字符串

用于将流量路由到目标的协议。

statepresenttarget_typeinstanceipalb 时必需。

选项

  • "http"

  • "https"

  • "tcp"

  • "tls"

  • "udp"

  • "tcp_udp"

  • "HTTP"

  • "HTTPS"

  • "TCP"

  • "TLS"

  • "UDP"

  • "TCP_UDP"

协议版本

字符串

在 community.aws 5.1.0 中添加

指定协议版本。

更新 elb_target_group 时,protocol_version 参数是不可变的,无法更改。

选项

  • "GRPC"

  • "HTTP1"

  • "HTTP2"

启用 Proxy Protocol v2

布尔值

在 community.aws 2.1.0 中添加

指示是否启用 Proxy Protocol 版本 2。

值为 truefalse

proxy_protocol_v2_enabled 仅受网络负载均衡器支持。

选项

  • false

  • true

清除标签

布尔值

如果 purge_tags=true 且设置了 tags,则将从资源中清除现有标签以完全匹配 tags 参数定义的内容。

如果没有设置 tags 参数,则即使 purge_tags=True,也不会修改标签。

aws: 开头的标签键由 Amazon 保留,不能修改。因此,在 purge_tags 参数的范围内,它们将被忽略。有关更多信息,请参阅 Amazon 文档 https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions

选项

  • false

  • true ← (默认)

区域

别名:aws_region、ec2_region

字符串

要使用的 AWS 区域。

对于 IAM、Route53 和 CloudFront 等全局服务,将忽略 region

也可以使用 AWS_REGIONEC2_REGION 环境变量。

有关更多信息,请参阅 Amazon AWS 文档 http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region

ec2_region 别名已弃用,将在 2024-12-01 之后的发行版中删除。

EC2_REGION 环境变量的支持已弃用,将在 2024-12-01 之后的发行版中删除。

密钥

别名:aws_secret_access_key、aws_secret_key、ec2_secret_key

字符串

AWS 密钥。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以按优先级递减顺序使用 AWS_SECRET_ACCESS_KEYAWS_SECRET_KEYEC2_SECRET_KEY 环境变量。

secret_keyprofile 选项互斥。

为与 AWS botocore SDK 保持一致,在 5.1.0 版本中添加了 aws_secret_access_key 别名。

ec2_secret_key 别名已弃用,将在 2024-12-01 之后的发行版中删除。

EC2_SECRET_KEY 环境变量的支持已弃用,将在 2024-12-01 之后的发行版中删除。

会话令牌

别名:aws_session_token、security_token、aws_security_token、access_token

字符串

与临时凭证一起使用的 AWS STS 会话令牌。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以按优先级递减顺序使用 AWS_SESSION_TOKENAWS_SECURITY_TOKENEC2_SECURITY_TOKEN 环境变量。

security_tokenprofile 选项互斥。

在 3.2.0 版本中添加了别名 aws_session_tokensession_token,在 6.0.0 版本中将参数从 security_token 重命名为 session_token

security_tokenaws_security_tokenaccess_token 别名已弃用,将在 2024-12-01 之后的发行版中删除。

EC2_SECRET_KEYAWS_SECURITY_TOKEN 环境变量的支持已弃用,将在 2024-12-01 之后的发行版中删除。

状态

字符串 / 必需

创建或销毁目标组。

选项

  • "present"

  • "absent"

整数

在 community.aws 1.5.0 中添加

客户端请求应路由到同一目标的时间段(以秒为单位)。在此时间段过期后,应用程序生成的 Cookie 将被视为过期。范围为 1 秒到 1 周 (604800 秒)。

字符串

在 community.aws 1.5.0 中添加

应用程序 Cookie 的名称。如果 stickiness_type=app_cookie,则需要此项。

启用粘性会话

布尔值

指示是否启用了粘性会话。

选项

  • false

  • true

整数

客户端请求应路由到同一目标的时间段(以秒为单位)。在此时间段过期后,负载均衡器生成的 Cookie 将被视为过期。范围为 1 秒到 1 周 (604800 秒)。

粘性会话类型

字符串

粘性会话的类型。

有效值为 lb_cookieapp_cookiesource_ip

如果未设置,AWS 将为应用负载均衡器默认为 lb_cookie,为网络负载均衡器默认为 source_ip

成功的响应代码

字符串

检查目标的成功响应时要使用的 HTTP 代码。

接受多个值(例如,“200,202”)或一个值的范围(例如,“200-299”)。

需要设置 health_check_protocol 参数。

标签

别名:resource_tags

字典

表示要应用于资源的标签的字典。

如果没有设置 tags 参数,则不会修改标签。

目标类型

字符串

使用此目标组注册目标时必须指定的目标类型。可能的值为 instance(目标由实例 ID 指定)、ip(目标由 IP 地址指定)、lambda(目标由 ARN 指定)或 alb(目标由 ARN 指定)。请注意,您不能使用多种类型为目标组指定目标。目标类型 lambda 和 alb 仅接受一个目标。当指定多个目标时,仅使用第一个目标。所有其他目标都将被忽略。如果目标类型为 ip,请从目标组的虚拟专用云 (VPC) 的子网中指定 IP 地址、RFC 1918 范围 (10.0.0.0/8、172.16.0.0/12 和 192.168.0.0/16) 和 RFC 6598 范围 (100.64.0.0/10)。您不能指定可公开路由的 IP 地址。

默认行为为 instance

选项

  • "instance"

  • "ip"

  • "lambda"

  • "alb"

目标

列表 / 元素=字典

目标组要分配的目标列表。此参数默认为空列表。除非您设置了“modify_targets”参数,否则组中所有现有目标都将被移除。此列表应包含 Id 和 Port 参数。详情请参见示例。

unhealthy_threshold_count

整数

在将目标视为不健康之前,所需的连续健康检查失败次数。

validate_certs

布尔值

设置为 false 时,将不会验证与 AWS API 通信的 SSL 证书。

强烈建议不要设置 validate_certs=false,作为替代方案,请考虑设置 aws_ca_bundle

选项

  • false

  • true ← (默认)

vpc_id

字符串

虚拟私有云 (VPC) 的标识符。

statepresenttarget_typeinstanceipalb 时必需。

wait

布尔值

是否等待目标组。

选项

  • false ← (默认)

  • true

wait_timeout

整数

等待目标组的时间。

默认值: 200

备注

注意

  • 创建目标组后,只能使用后续调用修改其健康检查。

  • 注意:对于模块,环境变量和配置文件是从 Ansible 的“主机”上下文而不是“控制器”上下文读取的。因此,可能需要将文件显式复制到“主机”。对于查找和连接插件,环境变量和配置文件是从 Ansible 的“控制器”上下文而不是“主机”上下文读取的。

  • Ansible 使用的 AWS SDK (boto3) 也可能从 Ansible “主机”上下文中的配置文件(通常为 ~/.aws/credentials)读取凭据和其他设置(如区域)的默认值。有关更多信息,请参见 https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html

示例

# Note: These examples do not set authentication details, see the AWS Guide for details.

- name: Create a target group with a default health check
  community.aws.elb_target_group:
    name: mytargetgroup
    protocol: http
    port: 80
    vpc_id: vpc-01234567
    state: present

- name: Create a target group with protocol_version 'GRPC'
  community.aws.elb_target_group:
    name: mytargetgroup
    protocol: http
    port: 80
    vpc_id: vpc-01234567
    protocol_version: GRPC
    state: present

- name: Modify the target group with a custom health check
  community.aws.elb_target_group:
    name: mytargetgroup
    protocol: http
    port: 80
    vpc_id: vpc-01234567
    health_check_protocol: http
    health_check_path: /health_check
    health_check_port: 80
    successful_response_codes: 200
    health_check_interval: 15
    health_check_timeout: 3
    healthy_threshold_count: 4
    unhealthy_threshold_count: 3
    state: present

- name: Delete a target group
  community.aws.elb_target_group:
    name: mytargetgroup
    state: absent

- name: Create a target group with instance targets
  community.aws.elb_target_group:
    name: mytargetgroup
    protocol: http
    port: 81
    vpc_id: vpc-01234567
    health_check_protocol: http
    health_check_path: /
    successful_response_codes: "200,250-260"
    targets:
      - Id: i-01234567
        Port: 80
      - Id: i-98765432
        Port: 80
    state: present
    wait_timeout: 200
    wait: true

- name: Create a target group with IP address targets
  community.aws.elb_target_group:
    name: mytargetgroup
    protocol: http
    port: 81
    vpc_id: vpc-01234567
    health_check_protocol: http
    health_check_path: /
    successful_response_codes: "200,250-260"
    target_type: ip
    targets:
      - Id: 10.0.0.10
        Port: 80
        AvailabilityZone: all
      - Id: 10.0.0.20
        Port: 80
    state: present
    wait_timeout: 200
    wait: true

# Using lambda as targets require that the target group
# itself is allow to invoke the lambda function.
# therefore you need first to create an empty target group
# to receive its arn, second, allow the target group
# to invoke the lambda function and third, add the target
# to the target group
- name: first, create empty target group
  community.aws.elb_target_group:
    name: my-lambda-targetgroup
    target_type: lambda
    state: present
    modify_targets: false
  register: out

- name: second, allow invoke of the lambda
  community.aws.lambda_policy:
    state: "{{ state | default('present') }}"
    function_name: my-lambda-function
    statement_id: someID
    action: lambda:InvokeFunction
    principal: elasticloadbalancing.amazonaws.com
    source_arn: "{{ out.target_group_arn }}"

- name: third, add target
  community.aws.elb_target_group:
    name: my-lambda-targetgroup
    target_type: lambda
    state: present
    targets:
      - Id: arn:aws:lambda:eu-central-1:123456789012:function:my-lambda-function

返回值

公共返回值已在此处记录 此处,以下是此模块特有的字段

描述

deregistration_connection_termination

布尔值

指示负载均衡器是否在注销超时结束时终止连接。

返回值: 当状态存在时

示例: true

deregistration_delay_timeout_seconds

整数

弹性负载均衡在将注销目标的状态从排空更改为未使用之前等待的时间量。

返回值: 当状态存在时

示例: 300

health_check_interval_seconds

整数

单个目标的健康检查之间的大致时间量(秒)。

返回值: 当状态存在时

示例: 30

health_check_path

字符串

健康检查请求的目标。

返回值: 当状态存在时

示例: "/index.html"

健康检查端口

字符串

用于连接目标的端口。

返回值: 当状态存在时

示例: "traffic-port"

健康检查协议

字符串

用于连接目标的协议。

返回值: 当状态存在时

示例: "HTTP"

health_check_timeout_seconds

整数

没有响应即表示健康检查失败的时间量(以秒为单位)。

返回值: 当状态存在时

示例: 5

健康阈值计数

整数

在将不健康的目标视为健康之前,需要连续成功进行的健康检查次数。

返回值: 当状态存在时

示例: 5

load_balancer_arns

列表 / 元素=字符串

将流量路由到此目标组的负载均衡器的 Amazon 资源名称 (ARN)。

返回值: 当状态存在时

示例: []

负载均衡算法类型

字符串

在 community.aws 3.2.0 中添加

使用的负载均衡算法类型。

返回值: 当状态存在时

示例: "least_outstanding_requests"

matcher

字典

检查目标的成功响应时要使用的 HTTP 代码。

返回值: 当状态存在时

示例: {"http_code": "200"}

端口

整数

目标正在侦听的端口。

返回值: 当状态存在时

示例: 80

协议

字符串

用于将流量路由到目标的协议。

返回值: 当状态存在时

示例: "HTTP"

启用粘性会话

布尔值

指示是否启用了粘性会话。

返回值: 当状态存在时

示例: true

整数

客户端的请求应路由到同一目标的时间段(以秒为单位)。

返回值: 当状态存在时

示例: 86400

粘性会话类型

字符串

粘性会话的类型。

返回值: 当状态存在时

示例: "lb_cookie"

tags

字典

附加到目标组的标签。

返回值: 当状态存在时

示例: {"Tag": "Example"}

target_group_arn

字符串

目标组的 Amazon 资源名称 (ARN)。

返回值: 当状态存在时

示例: "arn:aws:elasticloadbalancing:ap-southeast-2:123456789012:targetgroup/mytargetgroup/aabbccddee0044332211"

target_group_name

字符串

目标组的名称。

返回值: 当状态存在时

示例: "mytargetgroup"

unhealthy_threshold_count

整数

在将目标视为不健康之前,所需的连续健康检查失败次数。

返回值: 当状态存在时

示例: 2

vpc_id

字符串

目标的 VPC ID。

返回值: 当状态存在时

示例: "vpc-0123456"

作者

  • Rob White (@wimnat)