Minor documentation corrections.

This commit is contained in:
Ethan Devenport 2016-08-29 06:18:25 +00:00 committed by Matt Clay
parent 4b7a4e4495
commit 93a237f604
2 changed files with 12 additions and 8 deletions

View file

@ -98,6 +98,10 @@ options:
- This will assign the machine to the public LAN. If no LAN exists with public Internet access it is created. - This will assign the machine to the public LAN. If no LAN exists with public Internet access it is created.
required: false required: false
default: false default: false
nic_name:
description:
- The name of the default NIC.
required: false
lan: lan:
description: description:
- The ID of the LAN you wish to add the servers to. - The ID of the LAN you wish to add the servers to.

View file

@ -38,36 +38,36 @@ options:
description: description:
- The name or UUID of the firewall rule. - The name or UUID of the firewall rule.
required: false required: false
protocol protocol:
description: description:
- The protocol for the firewall rule. - The protocol for the firewall rule.
choices: [ "TCP", "UDP", "ICMP" ] choices: [ "TCP", "UDP", "ICMP" ]
required: true required: true
mac_source mac_source:
description: description:
- Only traffic originating from the respective MAC address is allowed. Valid format: aa:bb:cc:dd:ee:ff. No value allows all source MAC addresses. - Only traffic originating from the respective MAC address is allowed. Valid format: aa:bb:cc:dd:ee:ff. No value allows all source MAC addresses.
required: false required: false
source_ip source_ip:
description: description:
- Only traffic originating from the respective IPv4 address is allowed. No value allows all source IPs. - Only traffic originating from the respective IPv4 address is allowed. No value allows all source IPs.
required: false required: false
target_ip target_ip:
description: description:
- In case the target NIC has multiple IP addresses, only traffic directed to the respective IP address of the NIC is allowed. No value allows all target IPs. - In case the target NIC has multiple IP addresses, only traffic directed to the respective IP address of the NIC is allowed. No value allows all target IPs.
required: false required: false
port_range_start port_range_start:
description: description:
- Defines the start range of the allowed port (from 1 to 65534) if protocol TCP or UDP is chosen. Leave value empty to allow all ports. - Defines the start range of the allowed port (from 1 to 65534) if protocol TCP or UDP is chosen. Leave value empty to allow all ports.
required: false required: false
port_range_end port_range_end:
description: description:
- Defines the end range of the allowed port (from 1 to 65534) if the protocol TCP or UDP is chosen. Leave value empty to allow all ports. - Defines the end range of the allowed port (from 1 to 65534) if the protocol TCP or UDP is chosen. Leave value empty to allow all ports.
required: false required: false
icmp_type icmp_type:
description: description:
- Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen. No value allows all types. - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen. No value allows all types.
required: false required: false
icmp_code icmp_code:
description: description:
- Defines the allowed code (from 0 to 254) if protocol ICMP is chosen. No value allows all codes. - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen. No value allows all codes.
required: false required: false