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_eip.
New in community.general 0.2.0
The below requirements are needed on the host that executes this module.
Parameter | Comments |
|---|---|
dedicated_bandwidth dictionary | Specifies the dedicated bandwidth object. |
|
charge_mode string / required |
Specifies whether the bandwidth is billed by traffic or by bandwidth size. The value can be bandwidth or traffic. If this parameter is left blank or is null character string, default value bandwidth is used. For IPv6 addresses, the default parameter value is bandwidth outside China and is traffic in China. |
|
name string / required |
Specifies the bandwidth name. The value is a string of 1 to 64 characters that can contain letters, digits, underscores ( |
|
size integer / required |
Specifies the bandwidth size. The value ranges from 1 Mbit/s to 2000 Mbit/s by default. (The specific range may vary depending on the configuration in each region. You can see the bandwidth range of each region on the management console.) The minimum unit for bandwidth adjustment varies depending on the bandwidth range. The details are as follows. The minimum unit is 1 Mbit/s if the allowed bandwidth size ranges from 0 to 300 Mbit/s (with 300 Mbit/s included). The minimum unit is 50 Mbit/s if the allowed bandwidth size ranges 300 Mbit/s to 1000 Mbit/s (with 1000 Mbit/s included). The minimum unit is 500 Mbit/s if the allowed bandwidth size is greater than 1000 Mbit/s. |
domain string / required | The name of the Domain to scope to (Identity v3). Currently only domain names are supported, and not domain IDs. |
enterprise_project_id string | Specifies the enterprise project ID. |
id string | The ID of resource to be managed. |
identity_endpoint string / required | The Identity authentication URL. |
ip_version integer | The value can be 4 (IPv4 address) or 6 (IPv6 address). If this parameter is left blank, an IPv4 address is assigned. |
ipv4_address string | Specifies the obtained IPv4 EIP. The system automatically assigns an EIP if you do not specify it. |
password string / required | The password to login with. |
port_id string | Specifies the port ID. This parameter is returned only when a private IP address is bound with the EIP. |
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. |
string | Specifies the ID of shared bandwidth. |
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: |
|
update string |
The timeouts for update operation. Default: |
type string / required | Specifies the EIP type. |
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 an eip and bind it to a port
- name: Create vpc
hwc_network_vpc:
cidr: "192.168.100.0/24"
name: "ansible_network_vpc_test"
register: vpc
- name: Create subnet
hwc_vpc_subnet:
gateway_ip: "192.168.100.32"
name: "ansible_network_subnet_test"
dhcp_enable: true
vpc_id: "{{ vpc.id }}"
cidr: "192.168.100.0/26"
register: subnet
- name: Create a port
hwc_vpc_port:
subnet_id: "{{ subnet.id }}"
ip_address: "192.168.100.33"
register: port
- name: Create an eip and bind it to a port
community.general.hwc_vpc_eip:
type: "5_bgp"
dedicated_bandwidth:
charge_mode: "traffic"
name: "ansible_test_dedicated_bandwidth"
size: 1
port_id: "{{ port.id }}"
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
create_time string | Specifies the time (UTC time) when the EIP was assigned. Returned: success |
dedicated_bandwidth dictionary | Specifies the dedicated bandwidth object. Returned: success |
|
charge_mode string |
Specifies whether the bandwidth is billed by traffic or by bandwidth size. The value can be bandwidth or traffic. If this parameter is left blank or is null character string, default value bandwidth is used. For IPv6 addresses, the default parameter value is bandwidth outside China and is traffic in China. Returned: success |
|
id string |
Specifies the ID of dedicated bandwidth. Returned: success |
|
name string |
Specifies the bandwidth name. The value is a string of 1 to 64 characters that can contain letters, digits, underscores ( Returned: success |
|
size integer |
Specifies the bandwidth size. The value ranges from 1 Mbit/s to 2000 Mbit/s by default. (The specific range may vary depending on the configuration in each region. You can see the bandwidth range of each region on the management console.) The minimum unit for bandwidth adjustment varies depending on the bandwidth range. The details are as follows:. The minimum unit is 1 Mbit/s if the allowed bandwidth size ranges from 0 to 300 Mbit/s (with 300 Mbit/s included). The minimum unit is 50 Mbit/s if the allowed bandwidth size ranges 300 Mbit/s to 1000 Mbit/s (with 1000 Mbit/s included). The minimum unit is 500 Mbit/s if the allowed bandwidth size is greater than 1000 Mbit/s. Returned: success |
enterprise_project_id string | Specifies the enterprise project ID. Returned: success |
ip_version integer | The value can be 4 (IPv4 address) or 6 (IPv6 address). If this parameter is left blank, an IPv4 address is assigned. Returned: success |
ipv4_address string | Specifies the obtained IPv4 EIP. The system automatically assigns an EIP if you do not specify it. Returned: success |
ipv6_address string | Specifies the obtained IPv6 EIP. Returned: success |
port_id string | Specifies the port ID. This parameter is returned only when a private IP address is bound with the EIP. Returned: success |
private_ip_address string | Specifies the private IP address bound with the EIP. This parameter is returned only when a private IP address is bound with the EIP. Returned: success |
string | Specifies the ID of shared bandwidth. Returned: success |
type string | Specifies the EIP type. 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_eip_module.html