1. Packages
  2. libvirt
  3. API Docs
  4. Network
libvirt v0.4.5 published on Thursday, Mar 21, 2024 by Pulumi

libvirt.Network

Explore with Pulumi AI

libvirt logo
libvirt v0.4.5 published on Thursday, Mar 21, 2024 by Pulumi

    Manages a VM network resource within libvirt. For more information see the official documentation.

    Create Network Resource

    new Network(name: string, args?: NetworkArgs, opts?: CustomResourceOptions);
    @overload
    def Network(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                addresses: Optional[Sequence[str]] = None,
                autostart: Optional[bool] = None,
                bridge: Optional[str] = None,
                dhcp: Optional[NetworkDhcpArgs] = None,
                dns: Optional[NetworkDnsArgs] = None,
                dnsmasq_options: Optional[NetworkDnsmasqOptionsArgs] = None,
                domain: Optional[str] = None,
                mode: Optional[str] = None,
                mtu: Optional[int] = None,
                name: Optional[str] = None,
                routes: Optional[Sequence[NetworkRouteArgs]] = None,
                xml: Optional[NetworkXmlArgs] = None)
    @overload
    def Network(resource_name: str,
                args: Optional[NetworkArgs] = None,
                opts: Optional[ResourceOptions] = None)
    func NewNetwork(ctx *Context, name string, args *NetworkArgs, opts ...ResourceOption) (*Network, error)
    public Network(string name, NetworkArgs? args = null, CustomResourceOptions? opts = null)
    public Network(String name, NetworkArgs args)
    public Network(String name, NetworkArgs args, CustomResourceOptions options)
    
    type: libvirt:Network
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Network Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Network resource accepts the following input properties:

    Addresses List<string>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    Autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    Bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    Dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    Dns NetworkDns
    configuration of DNS specific settings for the network
    DnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    Domain string
    The domain used by the DNS server.
    Mode string
    One of:
    Mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    Name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    Routes List<NetworkRoute>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    Xml NetworkXml
    Addresses []string
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    Autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    Bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    Dhcp NetworkDhcpArgs
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    Dns NetworkDnsArgs
    configuration of DNS specific settings for the network
    DnsmasqOptions NetworkDnsmasqOptionsArgs
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    Domain string
    The domain used by the DNS server.
    Mode string
    One of:
    Mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    Name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    Routes []NetworkRouteArgs
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    Xml NetworkXmlArgs
    addresses List<String>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart Boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge String
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDns
    configuration of DNS specific settings for the network
    dnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain String
    The domain used by the DNS server.
    mode String
    One of:
    mtu Integer
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name String
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes List<NetworkRoute>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXml
    addresses string[]
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDns
    configuration of DNS specific settings for the network
    dnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain string
    The domain used by the DNS server.
    mode string
    One of:
    mtu number
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes NetworkRoute[]
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXml
    addresses Sequence[str]
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge str
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcpArgs
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDnsArgs
    configuration of DNS specific settings for the network
    dnsmasq_options NetworkDnsmasqOptionsArgs
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain str
    The domain used by the DNS server.
    mode str
    One of:
    mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name str
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes Sequence[NetworkRouteArgs]
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXmlArgs
    addresses List<String>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart Boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge String
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp Property Map
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns Property Map
    configuration of DNS specific settings for the network
    dnsmasqOptions Property Map
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain String
    The domain used by the DNS server.
    mode String
    One of:
    mtu Number
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name String
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes List<Property Map>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Network Resource

    Get an existing Network resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetworkState, opts?: CustomResourceOptions): Network
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            addresses: Optional[Sequence[str]] = None,
            autostart: Optional[bool] = None,
            bridge: Optional[str] = None,
            dhcp: Optional[NetworkDhcpArgs] = None,
            dns: Optional[NetworkDnsArgs] = None,
            dnsmasq_options: Optional[NetworkDnsmasqOptionsArgs] = None,
            domain: Optional[str] = None,
            mode: Optional[str] = None,
            mtu: Optional[int] = None,
            name: Optional[str] = None,
            routes: Optional[Sequence[NetworkRouteArgs]] = None,
            xml: Optional[NetworkXmlArgs] = None) -> Network
    func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
    public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
    public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Addresses List<string>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    Autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    Bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    Dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    Dns NetworkDns
    configuration of DNS specific settings for the network
    DnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    Domain string
    The domain used by the DNS server.
    Mode string
    One of:
    Mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    Name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    Routes List<NetworkRoute>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    Xml NetworkXml
    Addresses []string
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    Autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    Bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    Dhcp NetworkDhcpArgs
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    Dns NetworkDnsArgs
    configuration of DNS specific settings for the network
    DnsmasqOptions NetworkDnsmasqOptionsArgs
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    Domain string
    The domain used by the DNS server.
    Mode string
    One of:
    Mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    Name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    Routes []NetworkRouteArgs
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    Xml NetworkXmlArgs
    addresses List<String>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart Boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge String
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDns
    configuration of DNS specific settings for the network
    dnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain String
    The domain used by the DNS server.
    mode String
    One of:
    mtu Integer
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name String
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes List<NetworkRoute>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXml
    addresses string[]
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge string
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcp
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDns
    configuration of DNS specific settings for the network
    dnsmasqOptions NetworkDnsmasqOptions
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain string
    The domain used by the DNS server.
    mode string
    One of:
    mtu number
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name string
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes NetworkRoute[]
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXml
    addresses Sequence[str]
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart bool
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge str
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp NetworkDhcpArgs
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns NetworkDnsArgs
    configuration of DNS specific settings for the network
    dnsmasq_options NetworkDnsmasqOptionsArgs
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain str
    The domain used by the DNS server.
    mode str
    One of:
    mtu int
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name str
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes Sequence[NetworkRouteArgs]
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml NetworkXmlArgs
    addresses List<String>
    A list of (0 or 1) IPv4 and (0 or 1) IPv6 subnets in CIDR notation. This defines the subnets associated to that network. This argument is also used to define the address on the real host. If dhcp { enabled = true } addresses is also used to define the address range served by the DHCP server. No DHCP server will be started if addresses is omitted.
    autostart Boolean
    Set to true to start the network on host boot up. If not specified false is assumed.
    bridge String
    The bridge device defines the name of a bridge device which will be used to construct the virtual network (when not provided, it will be automatically obtained by libvirt in none, nat, route and open modes).
    dhcp Property Map
    DHCP configuration. You need to use it in conjuction with the adresses variable.
    dns Property Map
    configuration of DNS specific settings for the network
    dnsmasqOptions Property Map
    configuration of Dnsmasq options for the network You need to provide a list of option name and value pairs.
    domain String
    The domain used by the DNS server.
    mode String
    One of:
    mtu Number
    The MTU to set for the underlying network interfaces. When not supplied, libvirt will use the default for the interface, usually 1500. Libvirt version 5.1 and greater will advertise this value to nodes via DHCP.
    name String
    A unique name for the resource, required by libvirt. Changing this forces a new resource to be created.
    routes List<Property Map>
    a list of static routes. A cidr and a gateway must be provided. The gateway must be reachable via the bridge interface.
    xml Property Map

    Supporting Types

    NetworkDhcp, NetworkDhcpArgs

    Enabled bool
    when false, disable the DHCP server
    Enabled bool
    when false, disable the DHCP server
    enabled Boolean
    when false, disable the DHCP server
    enabled boolean
    when false, disable the DHCP server
    enabled bool
    when false, disable the DHCP server
    enabled Boolean
    when false, disable the DHCP server

    NetworkDns, NetworkDnsArgs

    Enabled bool
    when false, disable the DHCP server
    Forwarders List<NetworkDnsForwarder>
    Either address, domain, or both must be set
    Hosts List<NetworkDnsHost>

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    LocalOnly bool
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    Srvs List<NetworkDnsSrv>
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.
    Enabled bool
    when false, disable the DHCP server
    Forwarders []NetworkDnsForwarder
    Either address, domain, or both must be set
    Hosts []NetworkDnsHost

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    LocalOnly bool
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    Srvs []NetworkDnsSrv
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.
    enabled Boolean
    when false, disable the DHCP server
    forwarders List<NetworkDnsForwarder>
    Either address, domain, or both must be set
    hosts List<NetworkDnsHost>

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    localOnly Boolean
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    srvs List<NetworkDnsSrv>
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.
    enabled boolean
    when false, disable the DHCP server
    forwarders NetworkDnsForwarder[]
    Either address, domain, or both must be set
    hosts NetworkDnsHost[]

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    localOnly boolean
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    srvs NetworkDnsSrv[]
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.
    enabled bool
    when false, disable the DHCP server
    forwarders Sequence[NetworkDnsForwarder]
    Either address, domain, or both must be set
    hosts Sequence[NetworkDnsHost]

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    local_only bool
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    srvs Sequence[NetworkDnsSrv]
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.
    enabled Boolean
    when false, disable the DHCP server
    forwarders List<Property Map>
    Either address, domain, or both must be set
    hosts List<Property Map>

    a DNS host entry block. You can have one or more of these blocks in your DNS definition. You must specify both ip and hostname.

    An advanced example of round-robin DNS (using DNS host templates) follows:

    localOnly Boolean
    true/false: true means 'do not forward unresolved requests for this domain to the part DNS server
    srvs List<Property Map>
    a DNS SRV entry block. You can have one or more of these blocks in your DNS definition. You must specify service and protocol.

    NetworkDnsForwarder, NetworkDnsForwarderArgs

    Address string
    Domain string
    The domain used by the DNS server.
    Address string
    Domain string
    The domain used by the DNS server.
    address String
    domain String
    The domain used by the DNS server.
    address string
    domain string
    The domain used by the DNS server.
    address str
    domain str
    The domain used by the DNS server.
    address String
    domain String
    The domain used by the DNS server.

    NetworkDnsHost, NetworkDnsHostArgs

    Hostname string
    Ip string
    Hostname string
    Ip string
    hostname String
    ip String
    hostname string
    ip string
    hostname str
    ip str
    hostname String
    ip String

    NetworkDnsSrv, NetworkDnsSrvArgs

    Domain string
    The domain used by the DNS server.
    Port string
    Priority string
    Protocol string
    Service string
    Target string
    Weight string
    Domain string
    The domain used by the DNS server.
    Port string
    Priority string
    Protocol string
    Service string
    Target string
    Weight string
    domain String
    The domain used by the DNS server.
    port String
    priority String
    protocol String
    service String
    target String
    weight String
    domain string
    The domain used by the DNS server.
    port string
    priority string
    protocol string
    service string
    target string
    weight string
    domain str
    The domain used by the DNS server.
    port str
    priority str
    protocol str
    service str
    target str
    weight str
    domain String
    The domain used by the DNS server.
    port String
    priority String
    protocol String
    service String
    target String
    weight String

    NetworkDnsmasqOptions, NetworkDnsmasqOptionsArgs

    Options List<NetworkDnsmasqOptionsOption>

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    Options []NetworkDnsmasqOptionsOption

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    options List<NetworkDnsmasqOptionsOption>

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    options NetworkDnsmasqOptionsOption[]

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    options Sequence[NetworkDnsmasqOptionsOption]

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    options List<Property Map>

    a Dnsmasq option entry block. You can have one or more of these blocks in your definition. You must specify option_name while option_value is optional to support value-less options.

    An example of setting Dnsmasq options (using Dnsmasq option templates) follows:

    NetworkDnsmasqOptionsOption, NetworkDnsmasqOptionsOptionArgs

    OptionName string
    OptionValue string
    OptionName string
    OptionValue string
    optionName String
    optionValue String
    optionName string
    optionValue string
    optionName String
    optionValue String

    NetworkRoute, NetworkRouteArgs

    Cidr string
    Gateway string
    Cidr string
    Gateway string
    cidr String
    gateway String
    cidr string
    gateway string
    cidr str
    gateway str
    cidr String
    gateway String

    NetworkXml, NetworkXmlArgs

    Xslt string
    Xslt string
    xslt String
    xslt string
    xslt str
    xslt String

    Package Details

    Repository
    libvirt pulumi/pulumi-libvirt
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the libvirt Terraform Provider.
    libvirt logo
    libvirt v0.4.5 published on Thursday, Mar 21, 2024 by Pulumi