blob: 6f93a13bf7341c62cd423be4ae17da8439c61063 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
argument_specs:
main:
options:
pve_network_interface:
type: "str"
description: "Physical ethernet interface to add as bridge port"
default: "enp0s25"
network_ipv4_address:
type: "str"
description: "Static IPv4 address for vmbr0"
required: true
network_ipv4_prefix:
type: "int"
description: "IPv4 prefix length"
default: 24
network_ipv4_gateway:
type: "str"
description: "IPv4 default gateway"
required: true
network_ipv4_dns:
type: "str"
description: "IPv4 DNS server"
network_ipv6_address:
type: "str"
description: "Static IPv6 address for vmbr0 (optional)"
network_ipv6_gateway:
type: "str"
description: "IPv6 default gateway (required if network_ipv6_address is set)"
network_ipv6_dns:
type: "str"
description: "IPv6 DNS server"
|