1. Packages
  2. Openwrt Provider
  3. API Docs
  4. WirelessWifiIface
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

openwrt.WirelessWifiIface

Explore with Pulumi AI

openwrt logo
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

    A wireless network.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openwrt from "@pulumi/openwrt";
    
    const homeNetworkInterface = new openwrt.NetworkInterface("homeNetworkInterface", {
        device: "eth0",
        dns: [
            "9.9.9.9",
            "1.1.1.1",
        ],
        networkInterfaceId: "home",
        ipaddr: "192.168.3.1",
        netmask: "255.255.255.0",
        proto: "static",
    });
    const fiveGhz = new openwrt.WirelessWifiDevice("fiveGhz", {
        band: "5g",
        channel: "auto",
        wirelessWifiDeviceId: "radio0",
        type: "mac80211",
    });
    const homeWirelessWifiIface = new openwrt.WirelessWifiIface("homeWirelessWifiIface", {
        device: fiveGhz.wirelessWifiDeviceId,
        encryption: "sae",
        wirelessWifiIfaceId: "wifinet0",
        key: "password",
        mode: "ap",
        network: homeNetworkInterface.networkInterfaceId,
        ssid: "home",
        wpaDisableEapolKeyRetries: true,
    });
    
    import pulumi
    import pulumi_openwrt as openwrt
    
    home_network_interface = openwrt.NetworkInterface("homeNetworkInterface",
        device="eth0",
        dns=[
            "9.9.9.9",
            "1.1.1.1",
        ],
        network_interface_id="home",
        ipaddr="192.168.3.1",
        netmask="255.255.255.0",
        proto="static")
    five_ghz = openwrt.WirelessWifiDevice("fiveGhz",
        band="5g",
        channel="auto",
        wireless_wifi_device_id="radio0",
        type="mac80211")
    home_wireless_wifi_iface = openwrt.WirelessWifiIface("homeWirelessWifiIface",
        device=five_ghz.wireless_wifi_device_id,
        encryption="sae",
        wireless_wifi_iface_id="wifinet0",
        key="password",
        mode="ap",
        network=home_network_interface.network_interface_id,
        ssid="home",
        wpa_disable_eapol_key_retries=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/openwrt/openwrt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		homeNetworkInterface, err := openwrt.NewNetworkInterface(ctx, "homeNetworkInterface", &openwrt.NetworkInterfaceArgs{
    			Device: pulumi.String("eth0"),
    			Dns: pulumi.StringArray{
    				pulumi.String("9.9.9.9"),
    				pulumi.String("1.1.1.1"),
    			},
    			NetworkInterfaceId: pulumi.String("home"),
    			Ipaddr:             pulumi.String("192.168.3.1"),
    			Netmask:            pulumi.String("255.255.255.0"),
    			Proto:              pulumi.String("static"),
    		})
    		if err != nil {
    			return err
    		}
    		fiveGhz, err := openwrt.NewWirelessWifiDevice(ctx, "fiveGhz", &openwrt.WirelessWifiDeviceArgs{
    			Band:                 pulumi.String("5g"),
    			Channel:              pulumi.String("auto"),
    			WirelessWifiDeviceId: pulumi.String("radio0"),
    			Type:                 pulumi.String("mac80211"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = openwrt.NewWirelessWifiIface(ctx, "homeWirelessWifiIface", &openwrt.WirelessWifiIfaceArgs{
    			Device:                    fiveGhz.WirelessWifiDeviceId,
    			Encryption:                pulumi.String("sae"),
    			WirelessWifiIfaceId:       pulumi.String("wifinet0"),
    			Key:                       pulumi.String("password"),
    			Mode:                      pulumi.String("ap"),
    			Network:                   homeNetworkInterface.NetworkInterfaceId,
    			Ssid:                      pulumi.String("home"),
    			WpaDisableEapolKeyRetries: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Openwrt = Pulumi.Openwrt;
    
    return await Deployment.RunAsync(() => 
    {
        var homeNetworkInterface = new Openwrt.NetworkInterface("homeNetworkInterface", new()
        {
            Device = "eth0",
            Dns = new[]
            {
                "9.9.9.9",
                "1.1.1.1",
            },
            NetworkInterfaceId = "home",
            Ipaddr = "192.168.3.1",
            Netmask = "255.255.255.0",
            Proto = "static",
        });
    
        var fiveGhz = new Openwrt.WirelessWifiDevice("fiveGhz", new()
        {
            Band = "5g",
            Channel = "auto",
            WirelessWifiDeviceId = "radio0",
            Type = "mac80211",
        });
    
        var homeWirelessWifiIface = new Openwrt.WirelessWifiIface("homeWirelessWifiIface", new()
        {
            Device = fiveGhz.WirelessWifiDeviceId,
            Encryption = "sae",
            WirelessWifiIfaceId = "wifinet0",
            Key = "password",
            Mode = "ap",
            Network = homeNetworkInterface.NetworkInterfaceId,
            Ssid = "home",
            WpaDisableEapolKeyRetries = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openwrt.NetworkInterface;
    import com.pulumi.openwrt.NetworkInterfaceArgs;
    import com.pulumi.openwrt.WirelessWifiDevice;
    import com.pulumi.openwrt.WirelessWifiDeviceArgs;
    import com.pulumi.openwrt.WirelessWifiIface;
    import com.pulumi.openwrt.WirelessWifiIfaceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var homeNetworkInterface = new NetworkInterface("homeNetworkInterface", NetworkInterfaceArgs.builder()
                .device("eth0")
                .dns(            
                    "9.9.9.9",
                    "1.1.1.1")
                .networkInterfaceId("home")
                .ipaddr("192.168.3.1")
                .netmask("255.255.255.0")
                .proto("static")
                .build());
    
            var fiveGhz = new WirelessWifiDevice("fiveGhz", WirelessWifiDeviceArgs.builder()
                .band("5g")
                .channel("auto")
                .wirelessWifiDeviceId("radio0")
                .type("mac80211")
                .build());
    
            var homeWirelessWifiIface = new WirelessWifiIface("homeWirelessWifiIface", WirelessWifiIfaceArgs.builder()
                .device(fiveGhz.wirelessWifiDeviceId())
                .encryption("sae")
                .wirelessWifiIfaceId("wifinet0")
                .key("password")
                .mode("ap")
                .network(homeNetworkInterface.networkInterfaceId())
                .ssid("home")
                .wpaDisableEapolKeyRetries(true)
                .build());
    
        }
    }
    
    resources:
      homeNetworkInterface:
        type: openwrt:NetworkInterface
        properties:
          device: eth0
          dns:
            - 9.9.9.9
            - 1.1.1.1
          networkInterfaceId: home
          ipaddr: 192.168.3.1
          netmask: 255.255.255.0
          proto: static
      fiveGhz:
        type: openwrt:WirelessWifiDevice
        properties:
          band: 5g
          channel: auto
          wirelessWifiDeviceId: radio0
          type: mac80211
      homeWirelessWifiIface:
        type: openwrt:WirelessWifiIface
        properties:
          device: ${fiveGhz.wirelessWifiDeviceId}
          encryption: sae
          wirelessWifiIfaceId: wifinet0
          key: password
          mode: ap
          network: ${homeNetworkInterface.networkInterfaceId}
          ssid: home
          wpaDisableEapolKeyRetries: true
    

    Create WirelessWifiIface Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WirelessWifiIface(name: string, args: WirelessWifiIfaceArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessWifiIface(resource_name: str,
                          args: WirelessWifiIfaceArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessWifiIface(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          device: Optional[str] = None,
                          mode: Optional[str] = None,
                          network: Optional[str] = None,
                          ssid: Optional[str] = None,
                          wireless_wifi_iface_id: Optional[str] = None,
                          encryption: Optional[str] = None,
                          isolate: Optional[bool] = None,
                          key: Optional[str] = None,
                          wpa_disable_eapol_key_retries: Optional[bool] = None)
    func NewWirelessWifiIface(ctx *Context, name string, args WirelessWifiIfaceArgs, opts ...ResourceOption) (*WirelessWifiIface, error)
    public WirelessWifiIface(string name, WirelessWifiIfaceArgs args, CustomResourceOptions? opts = null)
    public WirelessWifiIface(String name, WirelessWifiIfaceArgs args)
    public WirelessWifiIface(String name, WirelessWifiIfaceArgs args, CustomResourceOptions options)
    
    type: openwrt:WirelessWifiIface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WirelessWifiIfaceArgs
    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 WirelessWifiIfaceArgs
    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 WirelessWifiIfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessWifiIfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessWifiIfaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var wirelessWifiIfaceResource = new Openwrt.WirelessWifiIface("wirelessWifiIfaceResource", new()
    {
        Device = "string",
        Mode = "string",
        Network = "string",
        Ssid = "string",
        WirelessWifiIfaceId = "string",
        Encryption = "string",
        Isolate = false,
        Key = "string",
        WpaDisableEapolKeyRetries = false,
    });
    
    example, err := openwrt.NewWirelessWifiIface(ctx, "wirelessWifiIfaceResource", &openwrt.WirelessWifiIfaceArgs{
    	Device:                    pulumi.String("string"),
    	Mode:                      pulumi.String("string"),
    	Network:                   pulumi.String("string"),
    	Ssid:                      pulumi.String("string"),
    	WirelessWifiIfaceId:       pulumi.String("string"),
    	Encryption:                pulumi.String("string"),
    	Isolate:                   pulumi.Bool(false),
    	Key:                       pulumi.String("string"),
    	WpaDisableEapolKeyRetries: pulumi.Bool(false),
    })
    
    var wirelessWifiIfaceResource = new WirelessWifiIface("wirelessWifiIfaceResource", WirelessWifiIfaceArgs.builder()
        .device("string")
        .mode("string")
        .network("string")
        .ssid("string")
        .wirelessWifiIfaceId("string")
        .encryption("string")
        .isolate(false)
        .key("string")
        .wpaDisableEapolKeyRetries(false)
        .build());
    
    wireless_wifi_iface_resource = openwrt.WirelessWifiIface("wirelessWifiIfaceResource",
        device="string",
        mode="string",
        network="string",
        ssid="string",
        wireless_wifi_iface_id="string",
        encryption="string",
        isolate=False,
        key="string",
        wpa_disable_eapol_key_retries=False)
    
    const wirelessWifiIfaceResource = new openwrt.WirelessWifiIface("wirelessWifiIfaceResource", {
        device: "string",
        mode: "string",
        network: "string",
        ssid: "string",
        wirelessWifiIfaceId: "string",
        encryption: "string",
        isolate: false,
        key: "string",
        wpaDisableEapolKeyRetries: false,
    });
    
    type: openwrt:WirelessWifiIface
    properties:
        device: string
        encryption: string
        isolate: false
        key: string
        mode: string
        network: string
        ssid: string
        wirelessWifiIfaceId: string
        wpaDisableEapolKeyRetries: false
    

    WirelessWifiIface Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The WirelessWifiIface resource accepts the following input properties:

    Device string
    Mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    Network string
    Ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    WirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    Encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    Isolate bool
    Isolate wireless clients from each other.
    Key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    WpaDisableEapolKeyRetries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    Device string
    Mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    Network string
    Ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    WirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    Encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    Isolate bool
    Isolate wireless clients from each other.
    Key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    WpaDisableEapolKeyRetries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device String
    mode String
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network String
    ssid String
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId String
    Name of the section. This name is only used when interacting with UCI directly.
    encryption String
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate Boolean
    Isolate wireless clients from each other.
    key String
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    wpaDisableEapolKeyRetries Boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device string
    mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network string
    ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate boolean
    Isolate wireless clients from each other.
    key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    wpaDisableEapolKeyRetries boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device str
    mode str
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network str
    ssid str
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wireless_wifi_iface_id str
    Name of the section. This name is only used when interacting with UCI directly.
    encryption str
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate bool
    Isolate wireless clients from each other.
    key str
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    wpa_disable_eapol_key_retries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device String
    mode String
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network String
    ssid String
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId String
    Name of the section. This name is only used when interacting with UCI directly.
    encryption String
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate Boolean
    Isolate wireless clients from each other.
    key String
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    wpaDisableEapolKeyRetries Boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WirelessWifiIface 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 WirelessWifiIface Resource

    Get an existing WirelessWifiIface 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?: WirelessWifiIfaceState, opts?: CustomResourceOptions): WirelessWifiIface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            encryption: Optional[str] = None,
            isolate: Optional[bool] = None,
            key: Optional[str] = None,
            mode: Optional[str] = None,
            network: Optional[str] = None,
            ssid: Optional[str] = None,
            wireless_wifi_iface_id: Optional[str] = None,
            wpa_disable_eapol_key_retries: Optional[bool] = None) -> WirelessWifiIface
    func GetWirelessWifiIface(ctx *Context, name string, id IDInput, state *WirelessWifiIfaceState, opts ...ResourceOption) (*WirelessWifiIface, error)
    public static WirelessWifiIface Get(string name, Input<string> id, WirelessWifiIfaceState? state, CustomResourceOptions? opts = null)
    public static WirelessWifiIface get(String name, Output<String> id, WirelessWifiIfaceState state, CustomResourceOptions options)
    resources:  _:    type: openwrt:WirelessWifiIface    get:      id: ${id}
    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:
    Device string
    Encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    Isolate bool
    Isolate wireless clients from each other.
    Key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    Mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    Network string
    Ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    WirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    WpaDisableEapolKeyRetries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    Device string
    Encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    Isolate bool
    Isolate wireless clients from each other.
    Key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    Mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    Network string
    Ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    WirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    WpaDisableEapolKeyRetries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device String
    encryption String
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate Boolean
    Isolate wireless clients from each other.
    key String
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    mode String
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network String
    ssid String
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId String
    Name of the section. This name is only used when interacting with UCI directly.
    wpaDisableEapolKeyRetries Boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device string
    encryption string
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate boolean
    Isolate wireless clients from each other.
    key string
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    mode string
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network string
    ssid string
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId string
    Name of the section. This name is only used when interacting with UCI directly.
    wpaDisableEapolKeyRetries boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device str
    encryption str
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate bool
    Isolate wireless clients from each other.
    key str
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    mode str
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network str
    ssid str
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wireless_wifi_iface_id str
    Name of the section. This name is only used when interacting with UCI directly.
    wpa_disable_eapol_key_retries bool
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).
    device String
    encryption String
    Encryption method. Currently, only PSK encryption methods are supported. Must be one of: "none", "psk", "psk2", "psk2+aes", "psk2+ccmp", "psk2+tkip", "psk2+tkip+aes", "psk2+tkip+ccmp", "psk+aes", "psk+ccmp", "psk-mixed", "psk-mixed+aes", "psk-mixed+ccmp", "psk-mixed+tkip", "psk-mixed+tkip+aes", "psk-mixed+tkip+ccmp", "psk+tkip", "psk+tkip+aes", "psk+tkip+ccmp", "sae", "sae-mixed".
    isolate Boolean
    Isolate wireless clients from each other.
    key String
    The pre-shared passphrase from which the pre-shared key will be derived. The clear text key has to be 8-63 characters long.
    mode String
    The operation mode of the wireless network interface controller.. Currently only "ap" is supported.
    network String
    ssid String
    The broadcasted SSID of the wireless network. This is what actual clients will see the network as.
    wirelessWifiIfaceId String
    Name of the section. This name is only used when interacting with UCI directly.
    wpaDisableEapolKeyRetries Boolean
    Enable WPA key reinstallation attack (KRACK) workaround. This should be true to enable KRACK workaround (you almost surely want this enabled).

    Import

    Find the Terraform id from LuCI’s JSON-RPC API.

    One way to find this information is with curl and jq:

    curl \

    --data '{"id": 0, "method": "foreach", "params": ["wireless", "wifi-iface"]}' \
    
    http://192.168.1.1/cgi-bin/luci/rpc/uci?auth=$AUTH_TOKEN \
    
    | jq '.result | map({terraformId: .[".name"]})'
    

    This command will output something like:

    [

    {

    "terraformId": "cfg123456",
    

    },

    {

    "terraformId": "cfg123457",
    

    }

    ]

    We’d then use the information to import the appropriate resource:

    $ pulumi import openwrt:index/wirelessWifiIface:WirelessWifiIface home_network cfg123456
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    openwrt joneshf/terraform-provider-openwrt
    License
    Notes
    This Pulumi package is based on the openwrt Terraform Provider.
    openwrt logo
    openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf