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"],
});
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"])
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
})
}
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",
},
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args DeviceTagsArgs
- 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 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 string
- The unique name of the resource.
- args DeviceTagsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeviceTagsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
});
example, err := tailscale.NewDeviceTags(ctx, "deviceTagsResource", &tailscale.DeviceTagsArgs{
DeviceId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var deviceTagsResource = new DeviceTags("deviceTagsResource", DeviceTagsArgs.builder()
.deviceId("string")
.tags("string")
.build());
device_tags_resource = tailscale.DeviceTags("deviceTagsResource",
device_id="string",
tags=["string"])
const deviceTagsResource = new tailscale.DeviceTags("deviceTagsResource", {
deviceId: "string",
tags: ["string"],
});
type: tailscale:DeviceTags
properties:
deviceId: string
tags:
- string
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
The DeviceTags resource accepts the following input properties:
- Device
Id string - The device to set tags for
- List<string>
- The tags to apply to the device
- Device
Id string - The device to set tags for
- []string
- The tags to apply to the device
- device
Id String - The device to set tags for
- List<String>
- The tags to apply to the device
- device
Id string - The device to set tags for
- string[]
- The tags to apply to the device
- device_
id str - The device to set tags for
- Sequence[str]
- The tags to apply to the device
- device
Id String - The device to set tags for
- 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)
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.
- Device
Id string - The device to set tags for
- List<string>
- The tags to apply to the device
- Device
Id string - The device to set tags for
- []string
- The tags to apply to the device
- device
Id String - The device to set tags for
- List<String>
- The tags to apply to the device
- device
Id string - The device to set tags for
- string[]
- The tags to apply to the device
- device_
id str - The device to set tags for
- Sequence[str]
- The tags to apply to the device
- device
Id String - The device to set tags for
- List<String>
- The tags to apply to the device
Package Details
- Repository
- tailscale pulumi/pulumi-tailscale
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
tailscale
Terraform Provider.