1. Packages
  2. Tailscale Provider
  3. API Docs
  4. DeviceTags
Tailscale v0.18.0 published on Thursday, Feb 27, 2025 by Pulumi

tailscale.DeviceTags

Explore with Pulumi AI

The device_tags resource is used to apply tags to Tailscale devices. See https://tailscale.com/kb/1068/acl-tags/ for more details.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tailscale from "@pulumi/tailscale";

const sampleDevice = tailscale.getDevice({
    name: "device.example.com",
});
const sampleTags = new tailscale.DeviceTags("sample_tags", {
    deviceId: sampleDevice.then(sampleDevice => sampleDevice.id),
    tags: ["room:bedroom"],
});
Copy
import pulumi
import pulumi_tailscale as tailscale

sample_device = tailscale.get_device(name="device.example.com")
sample_tags = tailscale.DeviceTags("sample_tags",
    device_id=sample_device.id,
    tags=["room:bedroom"])
Copy
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 {
		sampleDevice, err := tailscale.GetDevice(ctx, &tailscale.GetDeviceArgs{
			Name: pulumi.StringRef("device.example.com"),
		}, nil)
		if err != nil {
			return err
		}
		_, err = tailscale.NewDeviceTags(ctx, "sample_tags", &tailscale.DeviceTagsArgs{
			DeviceId: pulumi.String(sampleDevice.Id),
			Tags: pulumi.StringArray{
				pulumi.String("room:bedroom"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tailscale = Pulumi.Tailscale;

return await Deployment.RunAsync(() => 
{
    var sampleDevice = Tailscale.GetDevice.Invoke(new()
    {
        Name = "device.example.com",
    });

    var sampleTags = new Tailscale.DeviceTags("sample_tags", new()
    {
        DeviceId = sampleDevice.Apply(getDeviceResult => getDeviceResult.Id),
        Tags = new[]
        {
            "room:bedroom",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tailscale.TailscaleFunctions;
import com.pulumi.tailscale.inputs.GetDeviceArgs;
import com.pulumi.tailscale.DeviceTags;
import com.pulumi.tailscale.DeviceTagsArgs;
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) {
        final var sampleDevice = TailscaleFunctions.getDevice(GetDeviceArgs.builder()
            .name("device.example.com")
            .build());

        var sampleTags = new DeviceTags("sampleTags", DeviceTagsArgs.builder()
            .deviceId(sampleDevice.applyValue(getDeviceResult -> getDeviceResult.id()))
            .tags("room:bedroom")
            .build());

    }
}
Copy
resources:
  sampleTags:
    type: tailscale:DeviceTags
    name: sample_tags
    properties:
      deviceId: ${sampleDevice.id}
      tags:
        - room:bedroom
variables:
  sampleDevice:
    fn::invoke:
      function: tailscale:getDevice
      arguments:
        name: device.example.com
Copy

Create DeviceTags Resource

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

Constructor syntax

new DeviceTags(name: string, args: DeviceTagsArgs, opts?: CustomResourceOptions);
@overload
def DeviceTags(resource_name: str,
               args: DeviceTagsArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def DeviceTags(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               device_id: Optional[str] = None,
               tags: Optional[Sequence[str]] = None)
func NewDeviceTags(ctx *Context, name string, args DeviceTagsArgs, opts ...ResourceOption) (*DeviceTags, error)
public DeviceTags(string name, DeviceTagsArgs args, CustomResourceOptions? opts = null)
public DeviceTags(String name, DeviceTagsArgs args)
public DeviceTags(String name, DeviceTagsArgs args, CustomResourceOptions options)
type: tailscale:DeviceTags
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DeviceTagsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DeviceTagsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DeviceTagsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DeviceTagsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DeviceTagsArgs
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 deviceTagsResource = new Tailscale.DeviceTags("deviceTagsResource", new()
{
    DeviceId = "string",
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := tailscale.NewDeviceTags(ctx, "deviceTagsResource", &tailscale.DeviceTagsArgs{
	DeviceId: pulumi.String("string"),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var deviceTagsResource = new DeviceTags("deviceTagsResource", DeviceTagsArgs.builder()
    .deviceId("string")
    .tags("string")
    .build());
Copy
device_tags_resource = tailscale.DeviceTags("deviceTagsResource",
    device_id="string",
    tags=["string"])
Copy
const deviceTagsResource = new tailscale.DeviceTags("deviceTagsResource", {
    deviceId: "string",
    tags: ["string"],
});
Copy
type: tailscale:DeviceTags
properties:
    deviceId: string
    tags:
        - string
Copy

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

DeviceId This property is required. string
The device to set tags for
Tags This property is required. List<string>
The tags to apply to the device
DeviceId This property is required. string
The device to set tags for
Tags This property is required. []string
The tags to apply to the device
deviceId This property is required. String
The device to set tags for
tags This property is required. List<String>
The tags to apply to the device
deviceId This property is required. string
The device to set tags for
tags This property is required. string[]
The tags to apply to the device
device_id This property is required. str
The device to set tags for
tags This property is required. Sequence[str]
The tags to apply to the device
deviceId This property is required. String
The device to set tags for
tags This property is required. List<String>
The tags to apply to the device

Outputs

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

Get an existing DeviceTags 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?: DeviceTagsState, opts?: CustomResourceOptions): DeviceTags
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        device_id: Optional[str] = None,
        tags: Optional[Sequence[str]] = None) -> DeviceTags
func GetDeviceTags(ctx *Context, name string, id IDInput, state *DeviceTagsState, opts ...ResourceOption) (*DeviceTags, error)
public static DeviceTags Get(string name, Input<string> id, DeviceTagsState? state, CustomResourceOptions? opts = null)
public static DeviceTags get(String name, Output<String> id, DeviceTagsState state, CustomResourceOptions options)
resources:  _:    type: tailscale:DeviceTags    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
DeviceId string
The device to set tags for
Tags List<string>
The tags to apply to the device
DeviceId string
The device to set tags for
Tags []string
The tags to apply to the device
deviceId String
The device to set tags for
tags List<String>
The tags to apply to the device
deviceId string
The device to set tags for
tags string[]
The tags to apply to the device
device_id str
The device to set tags for
tags Sequence[str]
The tags to apply to the device
deviceId String
The device to set tags for
tags List<String>
The tags to apply to the device

Import

Device tags can be imported using the device id, e.g.,

$ pulumi import tailscale:index/deviceTags:DeviceTags sample 123456789
Copy

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

Package Details

Repository
tailscale pulumi/pulumi-tailscale
License
Apache-2.0
Notes
This Pulumi package is based on the tailscale Terraform Provider.