freebox_lan_config (Resource)

Manages the LAN configuration of the Freebox. This is a singleton resource: the LAN configuration always exists and cannot be deleted. Destroying this resource is a no-op.

Example

resource "freebox_lan_config" "example" {
  name         = "Freebox"
  name_dns     = "freebox"
  name_mdns    = "freebox"
  name_netbios = "FREEBOX"
}

output "lan_ip" {
  value = freebox_lan_config.example.ip
}

Schema

Optional

  • ip (String) Freebox Server IPv4 address
  • mode (String) LAN mode (router or bridge)
  • name (String) Freebox Server name
  • name_dns (String) Freebox Server DNS name
  • name_mdns (String) Freebox Server mDNS name
  • name_netbios (String) Freebox Server NetBIOS name

Read-Only

  • id (String) Fixed identifier for the singleton LAN configuration resource

Import

terraform import freebox_lan_config.example lan_config