Note
This module is part of the community.general collection (version 10.7.3).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.general. You need further requirements to be able to use this module, see Requirements for details.
To use it in a playbook, specify: community.general.hwc_vpc_peering_connect.
New in community.general 0.2.0
The below requirements are needed on the host that executes this module.
Parameter | Comments |
|---|---|
description string | The description of vpc peering connection. |
domain string / required | The name of the Domain to scope to (Identity v3). Currently only domain names are supported, and not domain IDs. |
id string | The ID of resource to be managed. |
identity_endpoint string / required | The Identity authentication URL. |
local_vpc_id string / required | Specifies the ID of local VPC. |
name string / required | Specifies the name of the VPC peering connection. The value can contain 1 to 64 characters. |
password string / required | The password to login with. |
peering_vpc dictionary / required | Specifies information about the peering VPC. |
|
project_id string |
Specifies the ID of the project which the peering vpc belongs to. |
|
vpc_id string / required |
Specifies the ID of peering VPC. |
project string / required | The name of the Tenant (Identity v2) or Project (Identity v3). Currently only project names are supported, and not project IDs. |
region string | The region to which the project belongs. |
state string | Whether the given object should exist in Huawei Cloud. Choices:
|
timeouts dictionary | The timeouts for each operations. Default: |
|
create string |
The timeouts for create operation. Default: |
user string / required | The user name to login with. Currently only user names are supported, and not user IDs. |
Attribute | Support | Description |
|---|---|---|
check_mode | Support: full | Can run in |
diff_mode | Support: none | Will return details on what has changed (or possibly needs changing in |
Note
ANSIBLE_HWC_IDENTITY_ENDPOINT environment variable.ANSIBLE_HWC_USER environment variable.ANSIBLE_HWC_PASSWORD environment variable.ANSIBLE_HWC_DOMAIN environment variable.ANSIBLE_HWC_PROJECT environment variable.ANSIBLE_HWC_REGION environment variable.# create a peering connect
- name: Create a local vpc
hwc_network_vpc:
cidr: "192.168.0.0/16"
name: "ansible_network_vpc_test_local"
register: vpc1
- name: Create a peering vpc
hwc_network_vpc:
cidr: "192.168.0.0/16"
name: "ansible_network_vpc_test_peering"
register: vpc2
- name: Create a peering connect
community.general.hwc_vpc_peering_connect:
local_vpc_id: "{{ vpc1.id }}"
name: "ansible_network_peering_test"
peering_vpc:
vpc_id: "{{ vpc2.id }}"
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
description string | The description of vpc peering connection. Returned: success |
local_vpc_id string | Specifies the ID of local VPC. Returned: success |
name string | Specifies the name of the VPC peering connection. The value can contain 1 to 64 characters. Returned: success |
peering_vpc dictionary | Specifies information about the peering VPC. Returned: success |
|
project_id string |
Specifies the ID of the project which the peering vpc belongs to. Returned: success |
|
vpc_id string |
Specifies the ID of peering VPC. Returned: success |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/general/hwc_vpc_peering_connect_module.html