tailscale.DnsSearchPaths
Explore with Pulumi AI
The dns_nameservers resource allows you to configure DNS nameservers for your Tailscale network. See https://tailscale.com/kb/1054/dns for more information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tailscale from "@pulumi/tailscale";
const sampleSearchPaths = new tailscale.DnsSearchPaths("sample_search_paths", {searchPaths: ["example.com"]});
import pulumi
import pulumi_tailscale as tailscale
sample_search_paths = tailscale.DnsSearchPaths("sample_search_paths", search_paths=["example.com"])
package main
import (
"github.com/pulumi/pulumi-tailscale/sdk/go/tailscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tailscale.NewDnsSearchPaths(ctx, "sample_search_paths", &tailscale.DnsSearchPathsArgs{
SearchPaths: pulumi.StringArray{
pulumi.String("example.com"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tailscale = Pulumi.Tailscale;
return await Deployment.RunAsync(() =>
{
var sampleSearchPaths = new Tailscale.DnsSearchPaths("sample_search_paths", new()
{
SearchPaths = new[]
{
"example.com",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tailscale.DnsSearchPaths;
import com.pulumi.tailscale.DnsSearchPathsArgs;
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 sampleSearchPaths = new DnsSearchPaths("sampleSearchPaths", DnsSearchPathsArgs.builder()
.searchPaths("example.com")
.build());
}
}
resources:
sampleSearchPaths:
type: tailscale:DnsSearchPaths
name: sample_search_paths
properties:
searchPaths:
- example.com
Create DnsSearchPaths Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DnsSearchPaths(name: string, args: DnsSearchPathsArgs, opts?: CustomResourceOptions);
@overload
def DnsSearchPaths(resource_name: str,
args: DnsSearchPathsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DnsSearchPaths(resource_name: str,
opts: Optional[ResourceOptions] = None,
search_paths: Optional[Sequence[str]] = None)
func NewDnsSearchPaths(ctx *Context, name string, args DnsSearchPathsArgs, opts ...ResourceOption) (*DnsSearchPaths, error)
public DnsSearchPaths(string name, DnsSearchPathsArgs args, CustomResourceOptions? opts = null)
public DnsSearchPaths(String name, DnsSearchPathsArgs args)
public DnsSearchPaths(String name, DnsSearchPathsArgs args, CustomResourceOptions options)
type: tailscale:DnsSearchPaths
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 DnsSearchPathsArgs
- 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 DnsSearchPathsArgs
- 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 DnsSearchPathsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DnsSearchPathsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DnsSearchPathsArgs
- 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 dnsSearchPathsResource = new Tailscale.DnsSearchPaths("dnsSearchPathsResource", new()
{
SearchPaths = new[]
{
"string",
},
});
example, err := tailscale.NewDnsSearchPaths(ctx, "dnsSearchPathsResource", &tailscale.DnsSearchPathsArgs{
SearchPaths: pulumi.StringArray{
pulumi.String("string"),
},
})
var dnsSearchPathsResource = new DnsSearchPaths("dnsSearchPathsResource", DnsSearchPathsArgs.builder()
.searchPaths("string")
.build());
dns_search_paths_resource = tailscale.DnsSearchPaths("dnsSearchPathsResource", search_paths=["string"])
const dnsSearchPathsResource = new tailscale.DnsSearchPaths("dnsSearchPathsResource", {searchPaths: ["string"]});
type: tailscale:DnsSearchPaths
properties:
searchPaths:
- string
DnsSearchPaths 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 DnsSearchPaths resource accepts the following input properties:
- Search
Paths List<string> - Devices on your network will use these domain suffixes to resolve DNS names.
- Search
Paths []string - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths List<String> - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths string[] - Devices on your network will use these domain suffixes to resolve DNS names.
- search_
paths Sequence[str] - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths List<String> - Devices on your network will use these domain suffixes to resolve DNS names.
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsSearchPaths 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 DnsSearchPaths Resource
Get an existing DnsSearchPaths 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?: DnsSearchPathsState, opts?: CustomResourceOptions): DnsSearchPaths
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
search_paths: Optional[Sequence[str]] = None) -> DnsSearchPaths
func GetDnsSearchPaths(ctx *Context, name string, id IDInput, state *DnsSearchPathsState, opts ...ResourceOption) (*DnsSearchPaths, error)
public static DnsSearchPaths Get(string name, Input<string> id, DnsSearchPathsState? state, CustomResourceOptions? opts = null)
public static DnsSearchPaths get(String name, Output<String> id, DnsSearchPathsState 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.
- Search
Paths List<string> - Devices on your network will use these domain suffixes to resolve DNS names.
- Search
Paths []string - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths List<String> - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths string[] - Devices on your network will use these domain suffixes to resolve DNS names.
- search_
paths Sequence[str] - Devices on your network will use these domain suffixes to resolve DNS names.
- search
Paths List<String> - Devices on your network will use these domain suffixes to resolve DNS names.
Package Details
- Repository
- tailscale pulumi/pulumi-tailscale
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
tailscale
Terraform Provider.