amazon.aws.ec2_vpc_peering 模块 – 在两个 VPC 之间创建、删除、接受和拒绝 VPC 对等连接。
注意
此模块是 amazon.aws 集合(版本 9.0.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install amazon.aws
。您需要其他要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:amazon.aws.ec2_vpc_peering
。
community.aws 1.0.0 中的新增功能
概要
阅读有关 VPC 对等连接的 AWS 文档 https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-peering.html。
别名:ec2_vpc_peer
要求
在执行此模块的主机上需要以下要求。
python >= 3.6
boto3 >= 1.28.0
botocore >= 1.31.0
参数
参数 |
注释 |
---|---|
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 和 profile 选项是互斥的。 aws_access_key_id 别名在 5.1.0 版本中添加,以与 AWS botocore SDK 保持一致。 ec2_access_key 别名已弃用,将在 2024-12-01 之后的版本中删除。 对 |
|
用于验证 SSL 证书的 CA 捆绑包的位置。 也可以使用 |
|
用于修改 botocore 配置的字典。 参数可以在 AWS 文档中找到 https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html#botocore.config.Config。 |
|
使用 也可以使用 选择
|
|
要连接的 URL,而不是默认的 AWS 终端节点。虽然这可以用于连接到其他与 AWS 兼容的服务,但 amazon.aws 和 community.aws 集合仅针对 AWS 进行测试。 也可以按优先级降序使用 ec2_url 和 s3_url 别名已弃用,将在 2024-12-01 之后的版本中删除。 对 |
|
用于跨账户对等的 AWS 账号。 |
|
接受 VPC 的区域。 |
|
接受 VPC 的 VPC ID。 |
|
对等连接 ID。 |
|
用于身份验证的命名 AWS 配置文件。 有关命名配置文件的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html。 也可以使用 profile 选项与 aws_access_key、aws_secret_key 和 security_token 选项互斥。 |
|
如果 如果未设置 以 选择
|
|
要使用的 AWS 区域。 对于 IAM、Route53 和 CloudFront 等全局服务,将忽略 region。 也可以使用 有关更多信息,请参阅 Amazon AWS 文档 http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region。
对 |
|
AWS 私有访问密钥。 有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys。 也可以按优先级递减顺序使用 secret_key 和 profile 选项互斥。 为了与 AWS botocore SDK 保持一致,在 5.1.0 版本中添加了 aws_secret_access_key 别名。 ec2_secret_key 别名已弃用,将在 2024-12-01 之后的版本中删除。 对 |
|
用于临时凭证的 AWS STS 会话令牌。 有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys。 也可以按优先级递减顺序使用 security_token 和 profile 选项互斥。 在 3.2.0 版本中添加了别名 aws_session_token 和 session_token,并在 6.0.0 版本中将参数名称从 security_token 更改为 session_token。 security_token、aws_security_token 和 access_token 别名已弃用,将在 2024-12-01 之后的版本中删除。 对 |
|
创建、删除、接受、拒绝对等连接。 选择
|
|
表示要应用于资源的标签的字典。 如果未设置 |
|
设置为 强烈建议不要设置 validate_certs=false,作为替代方案,请考虑设置 aws_ca_bundle。 选择
|
|
请求 VPC 的 VPC ID。 |
|
等待对等状态更改完成。 选择
|
注释
注意
在 2.0.0 版本中添加了对
purge_tags
的支持。注意: 对于模块,环境变量和配置文件是从 Ansible “主机” 上下文而不是“控制器”上下文读取的。因此,可能需要将文件显式复制到“主机”。对于查找和连接插件,环境变量和配置文件是从 Ansible “控制器” 上下文而不是“主机”上下文读取的。
Ansible 使用的 AWS SDK (boto3) 也可以从 Ansible “主机” 上下文中的配置文件(通常是
~/.aws/credentials
)读取凭证和其他设置(如区域)的默认值。有关更多信息,请参阅 https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html。
示例
# Complete example to create and accept a local peering connection.
- name: Create local account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-87654321"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Accept local EC2 VPC Peering request
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
state: "accept"
register: action_peer
# Complete example to delete a local peering connection.
- name: Create local account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-87654321"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Delete a local EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
state: "absent"
register: vpc_peer
# Complete example to create and accept a cross account peering connection.
- name: Create cross account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-12345678"
peer_owner_id: "123456789012"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Accept EC2 VPC Peering Connection from remote account
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
profile: "bot03_profile_for_cross_account"
state: "accept"
register: vpc_peer
# Complete example to create and accept an intra-region peering connection.
- name: Create intra-region EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "us-east-1"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-87654321"
peer_region: "us-west-2"
state: "present"
tags:
Name: "Peering connection for us-east-1 VPC to us-west-2 VPC"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Accept EC2 VPC Peering Connection from peer region
amazon.aws.ec2_vpc_peer:
region: "us-west-2"
peering_id: "{{ vpc_peer.peering_id }}"
state: "accept"
register: vpc_peer
# Complete example to create and reject a local peering connection.
- name: Create local account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-87654321"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Reject a local EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
state: "reject"
# Complete example to create and accept a cross account peering connection.
- name: Create cross account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-12345678"
peer_owner_id: "123456789012"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Accept a cross account EC2 VPC Peering Connection request
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
profile: "bot03_profile_for_cross_account"
state: "accept"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
# Complete example to create and reject a cross account peering connection.
- name: Create cross account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peering:
region: "ap-southeast-2"
vpc_id: "vpc-12345678"
peer_vpc_id: "vpc-12345678"
peer_owner_id: "123456789012"
state: "present"
tags:
Name: "Peering connection for VPC 21 to VPC 22"
CostCode: "CC1234"
Project: "phoenix"
register: vpc_peer
- name: Reject a cross account EC2 VPC Peering Connection
amazon.aws.ec2_vpc_peeriing:
region: "ap-southeast-2"
peering_id: "{{ vpc_peer.peering_id }}"
profile: "bot03_profile_for_cross_account"
state: "reject"
返回值
通用返回值记录在 此处,以下是此模块特有的字段
Key |
描述 |
---|---|
创建/删除的 VPC 对等连接的 ID。 返回: 始终 示例: |
|
VPC 对等连接的详细信息。 返回: 成功 |
|
有关接受连接的 VPC 的信息。 返回: 成功 |
|
VPC 的主要 CIDR。 返回: 当连接处于接受状态时。 示例: |
|
VPC 的所有 CIDR 的列表。 返回: 当连接处于接受状态时。 |
|
VPC 使用的 CIDR 块。 返回: 成功 示例: |
|
拥有 VPC 的 AWS 账户。 返回: 成功 示例: |
|
其他对等配置。 返回: 当连接处于接受状态时。 |
|
指示当从对等 VPC 中的实例查询时,VPC 是否可以将公有 DNS 主机名解析为私有 IP 地址。 返回: 成功 |
|
指示本地 ClassicLink 连接是否可以通过 VPC 对等连接与对等 VPC 通信。 返回: 成功 |
|
指示本地 VPC 是否可以通过 VPC 对等连接与对等 VPC 中的 ClassicLink 连接通信。 返回: 成功 |
|
VPC 所在的 AWS 区域。 返回: 成功 示例: |
|
VPC 的 ID 返回: 成功 示例: |
|
未接受的 VPC 对等连接将过期的日期和时间。 返回: 成功 示例: |
|
有关请求连接的 VPC 的信息。 返回: 成功 |
|
VPC 的主要 CIDR。 返回: 当连接未处于删除状态时。 示例: |
|
VPC 的所有 CIDR 的列表。 返回: 当连接未处于删除状态时。 |
|
VPC 使用的 CIDR 块 返回: 成功 示例: |
|
拥有 VPC 的 AWS 账户。 返回: 成功 示例: |
|
其他对等配置。 返回: 当连接未处于删除状态时。 |
|
指示当从对等 VPC 中的实例查询时,VPC 是否可以将公有 DNS 主机名解析为私有 IP 地址。 返回: 成功 |
|
指示本地 ClassicLink 连接是否可以通过 VPC 对等连接与对等 VPC 通信。 返回: 成功 |
|
指示本地 VPC 是否可以通过 VPC 对等连接与对等 VPC 中的 ClassicLink 连接通信。 返回: 成功 |
|
VPC 所在的 AWS 区域。 返回: 成功 示例: |
|
VPC 的 ID 返回: 成功 示例: |
|
连接的当前状态的详细信息。 返回: 成功 |
|
描述连接状态的简短代码。 返回: 成功 示例: |
|
有关连接状态的其他信息。 返回: 成功 示例: |
|
应用于连接的标签。 返回: 成功 |
|
VPC 对等连接的 ID。 返回: 成功 示例: |