Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general.
To use it in a playbook, specify: community.general.hwc_vpc_private_ip.
New in version 0.2.0: of community.general
The below requirements are needed on the host that executes this module.
| Parameter | Choices/Defaults | Comments |
|---|---|---|
| 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. | |
| ip_address string | Specifies the target IP address. The value can be an available IP address in the subnet. If it is not specified, the system automatically assigns an IP address. Cannot be changed after creating the private ip. | |
| password string / required | The password to login with. | |
| 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. |
| subnet_id string / required | Specifies the ID of the subnet from which IP addresses are assigned. Cannot be changed after creating the private ip. | |
| user string / required | The user name to login with (currently only user names are supported, and not user IDs). |
Note
ANSIBLE_HWC_IDENTITY_ENDPOINT env variable.ANSIBLE_HWC_USER env variable.ANSIBLE_HWC_PASSWORD env variable.ANSIBLE_HWC_DOMAIN env variable.ANSIBLE_HWC_PROJECT env variable.ANSIBLE_HWC_REGION env variable.# create a private ip
- 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 private ip
community.general.hwc_vpc_private_ip:
subnet_id: "{{ subnet.id }}"
ip_address: "192.168.100.33"
Common return values are documented here, the following are the fields unique to this module:
| Key | Returned | Description |
|---|---|---|
| ip_address string | success | Specifies the target IP address. The value can be an available IP address in the subnet. If it is not specified, the system automatically assigns an IP address. |
| subnet_id string | success | Specifies the ID of the subnet from which IP addresses are assigned. |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/hwc_vpc_private_ip_module.html