openwrt.DhcpOdhcpd
Explore with Pulumi AI
An embedded DHCP/DHCPv6/RA server & NDP relay.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as openwrt from "@pulumi/openwrt";
const _this = new openwrt.DhcpOdhcpd("this", {
dhcpOdhcpdId: "testing",
leasefile: "/tmp/leasefile",
leasetrigger: "/tmp/leasetrigger",
legacy: true,
loglevel: 6,
maindhcp: true,
});
import pulumi
import pulumi_openwrt as openwrt
this = openwrt.DhcpOdhcpd("this",
dhcp_odhcpd_id="testing",
leasefile="/tmp/leasefile",
leasetrigger="/tmp/leasetrigger",
legacy=True,
loglevel=6,
maindhcp=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 {
_, err := openwrt.NewDhcpOdhcpd(ctx, "this", &openwrt.DhcpOdhcpdArgs{
DhcpOdhcpdId: pulumi.String("testing"),
Leasefile: pulumi.String("/tmp/leasefile"),
Leasetrigger: pulumi.String("/tmp/leasetrigger"),
Legacy: pulumi.Bool(true),
Loglevel: pulumi.Float64(6),
Maindhcp: 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 @this = new Openwrt.DhcpOdhcpd("this", new()
{
DhcpOdhcpdId = "testing",
Leasefile = "/tmp/leasefile",
Leasetrigger = "/tmp/leasetrigger",
Legacy = true,
Loglevel = 6,
Maindhcp = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openwrt.DhcpOdhcpd;
import com.pulumi.openwrt.DhcpOdhcpdArgs;
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 this_ = new DhcpOdhcpd("this", DhcpOdhcpdArgs.builder()
.dhcpOdhcpdId("testing")
.leasefile("/tmp/leasefile")
.leasetrigger("/tmp/leasetrigger")
.legacy(true)
.loglevel(6)
.maindhcp(true)
.build());
}
}
resources:
this:
type: openwrt:DhcpOdhcpd
properties:
dhcpOdhcpdId: testing
leasefile: /tmp/leasefile
leasetrigger: /tmp/leasetrigger
legacy: true
loglevel: 6
maindhcp: true
Create DhcpOdhcpd Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DhcpOdhcpd(name: string, args: DhcpOdhcpdArgs, opts?: CustomResourceOptions);
@overload
def DhcpOdhcpd(resource_name: str,
args: DhcpOdhcpdArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DhcpOdhcpd(resource_name: str,
opts: Optional[ResourceOptions] = None,
dhcp_odhcpd_id: Optional[str] = None,
leasefile: Optional[str] = None,
leasetrigger: Optional[str] = None,
legacy: Optional[bool] = None,
loglevel: Optional[float] = None,
maindhcp: Optional[bool] = None)
func NewDhcpOdhcpd(ctx *Context, name string, args DhcpOdhcpdArgs, opts ...ResourceOption) (*DhcpOdhcpd, error)
public DhcpOdhcpd(string name, DhcpOdhcpdArgs args, CustomResourceOptions? opts = null)
public DhcpOdhcpd(String name, DhcpOdhcpdArgs args)
public DhcpOdhcpd(String name, DhcpOdhcpdArgs args, CustomResourceOptions options)
type: openwrt:DhcpOdhcpd
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 DhcpOdhcpdArgs
- 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 DhcpOdhcpdArgs
- 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 DhcpOdhcpdArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DhcpOdhcpdArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DhcpOdhcpdArgs
- 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 dhcpOdhcpdResource = new Openwrt.DhcpOdhcpd("dhcpOdhcpdResource", new()
{
DhcpOdhcpdId = "string",
Leasefile = "string",
Leasetrigger = "string",
Legacy = false,
Loglevel = 0,
Maindhcp = false,
});
example, err := openwrt.NewDhcpOdhcpd(ctx, "dhcpOdhcpdResource", &openwrt.DhcpOdhcpdArgs{
DhcpOdhcpdId: pulumi.String("string"),
Leasefile: pulumi.String("string"),
Leasetrigger: pulumi.String("string"),
Legacy: pulumi.Bool(false),
Loglevel: pulumi.Float64(0),
Maindhcp: pulumi.Bool(false),
})
var dhcpOdhcpdResource = new DhcpOdhcpd("dhcpOdhcpdResource", DhcpOdhcpdArgs.builder()
.dhcpOdhcpdId("string")
.leasefile("string")
.leasetrigger("string")
.legacy(false)
.loglevel(0)
.maindhcp(false)
.build());
dhcp_odhcpd_resource = openwrt.DhcpOdhcpd("dhcpOdhcpdResource",
dhcp_odhcpd_id="string",
leasefile="string",
leasetrigger="string",
legacy=False,
loglevel=0,
maindhcp=False)
const dhcpOdhcpdResource = new openwrt.DhcpOdhcpd("dhcpOdhcpdResource", {
dhcpOdhcpdId: "string",
leasefile: "string",
leasetrigger: "string",
legacy: false,
loglevel: 0,
maindhcp: false,
});
type: openwrt:DhcpOdhcpd
properties:
dhcpOdhcpdId: string
leasefile: string
leasetrigger: string
legacy: false
loglevel: 0
maindhcp: false
DhcpOdhcpd 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 DhcpOdhcpd resource accepts the following input properties:
- Dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- Leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- Leasetrigger string
- Location of the lease trigger script.
- Legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - Loglevel double
- Syslog level priority (0-7).
- Maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- Dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- Leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- Leasetrigger string
- Location of the lease trigger script.
- Legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - Loglevel float64
- Syslog level priority (0-7).
- Maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd StringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile String
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger String
- Location of the lease trigger script.
- legacy Boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel Double
- Syslog level priority (0-7).
- maindhcp Boolean
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger string
- Location of the lease trigger script.
- legacy boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel number
- Syslog level priority (0-7).
- maindhcp boolean
- Use odhcpd as the main DHCPv4 service.
- dhcp_
odhcpd_ strid - Name of the section. This name is only used when interacting with UCI directly.
- leasefile str
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger str
- Location of the lease trigger script.
- legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel float
- Syslog level priority (0-7).
- maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd StringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile String
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger String
- Location of the lease trigger script.
- legacy Boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel Number
- Syslog level priority (0-7).
- maindhcp Boolean
- Use odhcpd as the main DHCPv4 service.
Outputs
All input properties are implicitly available as output properties. Additionally, the DhcpOdhcpd 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 DhcpOdhcpd Resource
Get an existing DhcpOdhcpd 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?: DhcpOdhcpdState, opts?: CustomResourceOptions): DhcpOdhcpd
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dhcp_odhcpd_id: Optional[str] = None,
leasefile: Optional[str] = None,
leasetrigger: Optional[str] = None,
legacy: Optional[bool] = None,
loglevel: Optional[float] = None,
maindhcp: Optional[bool] = None) -> DhcpOdhcpd
func GetDhcpOdhcpd(ctx *Context, name string, id IDInput, state *DhcpOdhcpdState, opts ...ResourceOption) (*DhcpOdhcpd, error)
public static DhcpOdhcpd Get(string name, Input<string> id, DhcpOdhcpdState? state, CustomResourceOptions? opts = null)
public static DhcpOdhcpd get(String name, Output<String> id, DhcpOdhcpdState state, CustomResourceOptions options)
resources: _: type: openwrt:DhcpOdhcpd 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.
- Dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- Leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- Leasetrigger string
- Location of the lease trigger script.
- Legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - Loglevel double
- Syslog level priority (0-7).
- Maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- Dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- Leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- Leasetrigger string
- Location of the lease trigger script.
- Legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - Loglevel float64
- Syslog level priority (0-7).
- Maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd StringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile String
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger String
- Location of the lease trigger script.
- legacy Boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel Double
- Syslog level priority (0-7).
- maindhcp Boolean
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd stringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile string
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger string
- Location of the lease trigger script.
- legacy boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel number
- Syslog level priority (0-7).
- maindhcp boolean
- Use odhcpd as the main DHCPv4 service.
- dhcp_
odhcpd_ strid - Name of the section. This name is only used when interacting with UCI directly.
- leasefile str
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger str
- Location of the lease trigger script.
- legacy bool
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel float
- Syslog level priority (0-7).
- maindhcp bool
- Use odhcpd as the main DHCPv4 service.
- dhcp
Odhcpd StringId - Name of the section. This name is only used when interacting with UCI directly.
- leasefile String
- Location of the lease/hostfile for DHCPv4 and DHCPv6.
- leasetrigger String
- Location of the lease trigger script.
- legacy Boolean
- Enable DHCPv4 if the 'dhcp' section constains a
start
option, but nodhcpv4
option set. - loglevel Number
- Syslog level priority (0-7).
- maindhcp Boolean
- Use odhcpd as the main DHCPv4 service.
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": ["dhcp", "odhcpd"]}' \
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",
}
]
We’d then use the information to import the appropriate resource:
$ pulumi import openwrt:index/dhcpOdhcpd:DhcpOdhcpd this 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.