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

openwrt.DhcpDomain

Explore with Pulumi AI

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

    Binds a domain name to an IP address.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openwrt from "@pulumi/openwrt";
    
    const testing = new openwrt.DhcpDomain("testing", {
        dhcpDomainId: "testing",
        ip: "192.168.1.50",
    });
    
    import pulumi
    import pulumi_openwrt as openwrt
    
    testing = openwrt.DhcpDomain("testing",
        dhcp_domain_id="testing",
        ip="192.168.1.50")
    
    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.NewDhcpDomain(ctx, "testing", &openwrt.DhcpDomainArgs{
    			DhcpDomainId: pulumi.String("testing"),
    			Ip:           pulumi.String("192.168.1.50"),
    		})
    		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 testing = new Openwrt.DhcpDomain("testing", new()
        {
            DhcpDomainId = "testing",
            Ip = "192.168.1.50",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openwrt.DhcpDomain;
    import com.pulumi.openwrt.DhcpDomainArgs;
    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 testing = new DhcpDomain("testing", DhcpDomainArgs.builder()
                .dhcpDomainId("testing")
                .ip("192.168.1.50")
                .build());
    
        }
    }
    
    resources:
      testing:
        type: openwrt:DhcpDomain
        properties:
          dhcpDomainId: testing
          ip: 192.168.1.50
    

    Create DhcpDomain Resource

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

    Constructor syntax

    new DhcpDomain(name: string, args: DhcpDomainArgs, opts?: CustomResourceOptions);
    @overload
    def DhcpDomain(resource_name: str,
                   args: DhcpDomainArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def DhcpDomain(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   dhcp_domain_id: Optional[str] = None,
                   ip: Optional[str] = None,
                   name: Optional[str] = None)
    func NewDhcpDomain(ctx *Context, name string, args DhcpDomainArgs, opts ...ResourceOption) (*DhcpDomain, error)
    public DhcpDomain(string name, DhcpDomainArgs args, CustomResourceOptions? opts = null)
    public DhcpDomain(String name, DhcpDomainArgs args)
    public DhcpDomain(String name, DhcpDomainArgs args, CustomResourceOptions options)
    
    type: openwrt:DhcpDomain
    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 DhcpDomainArgs
    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 DhcpDomainArgs
    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 DhcpDomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DhcpDomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DhcpDomainArgs
    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 dhcpDomainResource = new Openwrt.DhcpDomain("dhcpDomainResource", new()
    {
        DhcpDomainId = "string",
        Ip = "string",
        Name = "string",
    });
    
    example, err := openwrt.NewDhcpDomain(ctx, "dhcpDomainResource", &openwrt.DhcpDomainArgs{
    	DhcpDomainId: pulumi.String("string"),
    	Ip:           pulumi.String("string"),
    	Name:         pulumi.String("string"),
    })
    
    var dhcpDomainResource = new DhcpDomain("dhcpDomainResource", DhcpDomainArgs.builder()
        .dhcpDomainId("string")
        .ip("string")
        .name("string")
        .build());
    
    dhcp_domain_resource = openwrt.DhcpDomain("dhcpDomainResource",
        dhcp_domain_id="string",
        ip="string",
        name="string")
    
    const dhcpDomainResource = new openwrt.DhcpDomain("dhcpDomainResource", {
        dhcpDomainId: "string",
        ip: "string",
        name: "string",
    });
    
    type: openwrt:DhcpDomain
    properties:
        dhcpDomainId: string
        ip: string
        name: string
    

    DhcpDomain 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 DhcpDomain resource accepts the following input properties:

    DhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    Ip string
    The IP address to be used for this domain.
    Name string
    Hostname to assign.
    DhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    Ip string
    The IP address to be used for this domain.
    Name string
    Hostname to assign.
    dhcpDomainId String
    Name of the section. This name is only used when interacting with UCI directly.
    ip String
    The IP address to be used for this domain.
    name String
    Hostname to assign.
    dhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    ip string
    The IP address to be used for this domain.
    name string
    Hostname to assign.
    dhcp_domain_id str
    Name of the section. This name is only used when interacting with UCI directly.
    ip str
    The IP address to be used for this domain.
    name str
    Hostname to assign.
    dhcpDomainId String
    Name of the section. This name is only used when interacting with UCI directly.
    ip String
    The IP address to be used for this domain.
    name String
    Hostname to assign.

    Outputs

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

    Get an existing DhcpDomain 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?: DhcpDomainState, opts?: CustomResourceOptions): DhcpDomain
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dhcp_domain_id: Optional[str] = None,
            ip: Optional[str] = None,
            name: Optional[str] = None) -> DhcpDomain
    func GetDhcpDomain(ctx *Context, name string, id IDInput, state *DhcpDomainState, opts ...ResourceOption) (*DhcpDomain, error)
    public static DhcpDomain Get(string name, Input<string> id, DhcpDomainState? state, CustomResourceOptions? opts = null)
    public static DhcpDomain get(String name, Output<String> id, DhcpDomainState state, CustomResourceOptions options)
    resources:  _:    type: openwrt:DhcpDomain    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:
    DhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    Ip string
    The IP address to be used for this domain.
    Name string
    Hostname to assign.
    DhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    Ip string
    The IP address to be used for this domain.
    Name string
    Hostname to assign.
    dhcpDomainId String
    Name of the section. This name is only used when interacting with UCI directly.
    ip String
    The IP address to be used for this domain.
    name String
    Hostname to assign.
    dhcpDomainId string
    Name of the section. This name is only used when interacting with UCI directly.
    ip string
    The IP address to be used for this domain.
    name string
    Hostname to assign.
    dhcp_domain_id str
    Name of the section. This name is only used when interacting with UCI directly.
    ip str
    The IP address to be used for this domain.
    name str
    Hostname to assign.
    dhcpDomainId String
    Name of the section. This name is only used when interacting with UCI directly.
    ip String
    The IP address to be used for this domain.
    name String
    Hostname to assign.

    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", "domain"]}' \
    
    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/dhcpDomain:DhcpDomain 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.
    openwrt logo
    openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf