@pulumi/tailscale 0.23.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/acl.d.ts +18 -18
- package/acl.js +12 -12
- package/awsExternalId.d.ts +51 -0
- package/awsExternalId.js +51 -0
- package/awsExternalId.js.map +1 -1
- package/federatedIdentity.d.ts +182 -0
- package/federatedIdentity.js +108 -0
- package/federatedIdentity.js.map +1 -0
- package/getAcl.d.ts +6 -2
- package/getAcl.js +6 -2
- package/getAcl.js.map +1 -1
- package/getDevice.d.ts +56 -0
- package/getDevice.js.map +1 -1
- package/getUsers.d.ts +6 -6
- package/index.d.ts +3 -0
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/logstreamConfiguration.d.ts +80 -12
- package/logstreamConfiguration.js +28 -0
- package/logstreamConfiguration.js.map +1 -1
- package/oauthClient.d.ts +16 -8
- package/oauthClient.js +2 -0
- package/oauthClient.js.map +1 -1
- package/package.json +2 -2
- package/postureIntegration.d.ts +3 -3
- package/postureIntegration.js +3 -1
- package/postureIntegration.js.map +1 -1
- package/types/output.d.ts +56 -0
- package/webhook.d.ts +6 -6
package/types/output.d.ts
CHANGED
|
@@ -52,6 +52,26 @@ export interface GetDevicesDevice {
|
|
|
52
52
|
* The list of device's IPs
|
|
53
53
|
*/
|
|
54
54
|
addresses: string[];
|
|
55
|
+
/**
|
|
56
|
+
* Whether the device is authorized to access the tailnet
|
|
57
|
+
*/
|
|
58
|
+
authorized: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Whether the device blocks incoming connections
|
|
61
|
+
*/
|
|
62
|
+
blocksIncomingConnections: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* The Tailscale client version running on the device
|
|
65
|
+
*/
|
|
66
|
+
clientVersion: string;
|
|
67
|
+
/**
|
|
68
|
+
* The creation time of the device
|
|
69
|
+
*/
|
|
70
|
+
created: string;
|
|
71
|
+
/**
|
|
72
|
+
* The expiry time of the device's key
|
|
73
|
+
*/
|
|
74
|
+
expires: string;
|
|
55
75
|
/**
|
|
56
76
|
* The short hostname of the device
|
|
57
77
|
*/
|
|
@@ -60,6 +80,22 @@ export interface GetDevicesDevice {
|
|
|
60
80
|
* The legacy identifier of the device. Use nodeId instead for new resources.
|
|
61
81
|
*/
|
|
62
82
|
id: string;
|
|
83
|
+
/**
|
|
84
|
+
* Whether the device is marked as external
|
|
85
|
+
*/
|
|
86
|
+
isExternal: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Whether the device's key expiry is disabled
|
|
89
|
+
*/
|
|
90
|
+
keyExpiryDisabled: boolean;
|
|
91
|
+
/**
|
|
92
|
+
* The last seen time of the device
|
|
93
|
+
*/
|
|
94
|
+
lastSeen: string;
|
|
95
|
+
/**
|
|
96
|
+
* The machine key of the device
|
|
97
|
+
*/
|
|
98
|
+
machineKey: string;
|
|
63
99
|
/**
|
|
64
100
|
* The full name of the device (e.g. `hostname.domain.ts.net`)
|
|
65
101
|
*/
|
|
@@ -68,10 +104,30 @@ export interface GetDevicesDevice {
|
|
|
68
104
|
* The preferred indentifier for a device.
|
|
69
105
|
*/
|
|
70
106
|
nodeId: string;
|
|
107
|
+
/**
|
|
108
|
+
* The node key of the device
|
|
109
|
+
*/
|
|
110
|
+
nodeKey: string;
|
|
111
|
+
/**
|
|
112
|
+
* The operating system of the device
|
|
113
|
+
*/
|
|
114
|
+
os: string;
|
|
71
115
|
/**
|
|
72
116
|
* The tags applied to the device
|
|
73
117
|
*/
|
|
74
118
|
tags: string[];
|
|
119
|
+
/**
|
|
120
|
+
* The tailnet lock error for the device, if any
|
|
121
|
+
*/
|
|
122
|
+
tailnetLockError: string;
|
|
123
|
+
/**
|
|
124
|
+
* The tailnet lock key for the device, if any
|
|
125
|
+
*/
|
|
126
|
+
tailnetLockKey: string;
|
|
127
|
+
/**
|
|
128
|
+
* Whether an update is available for the device
|
|
129
|
+
*/
|
|
130
|
+
updateAvailable: boolean;
|
|
75
131
|
/**
|
|
76
132
|
* The user associated with the device
|
|
77
133
|
*/
|
package/webhook.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
49
49
|
*/
|
|
50
50
|
readonly endpointUrl: pulumi.Output<string>;
|
|
51
51
|
/**
|
|
52
|
-
* The provider type of the endpoint URL.
|
|
52
|
+
* The provider type of the endpoint URL. This determines the payload format sent to the destination. Valid values are `slack`, `mattermost`, `googlechat`, and `discord`.
|
|
53
53
|
*/
|
|
54
54
|
readonly providerType: pulumi.Output<string | undefined>;
|
|
55
55
|
/**
|
|
@@ -57,7 +57,7 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
57
57
|
*/
|
|
58
58
|
readonly secret: pulumi.Output<string>;
|
|
59
59
|
/**
|
|
60
|
-
* The
|
|
60
|
+
* The set of events that trigger this webhook. For a full list of event types, see the [webhooks documentation](https://tailscale.com/kb/1213/webhooks#events).
|
|
61
61
|
*/
|
|
62
62
|
readonly subscriptions: pulumi.Output<string[]>;
|
|
63
63
|
/**
|
|
@@ -78,7 +78,7 @@ export interface WebhookState {
|
|
|
78
78
|
*/
|
|
79
79
|
endpointUrl?: pulumi.Input<string>;
|
|
80
80
|
/**
|
|
81
|
-
* The provider type of the endpoint URL.
|
|
81
|
+
* The provider type of the endpoint URL. This determines the payload format sent to the destination. Valid values are `slack`, `mattermost`, `googlechat`, and `discord`.
|
|
82
82
|
*/
|
|
83
83
|
providerType?: pulumi.Input<string>;
|
|
84
84
|
/**
|
|
@@ -86,7 +86,7 @@ export interface WebhookState {
|
|
|
86
86
|
*/
|
|
87
87
|
secret?: pulumi.Input<string>;
|
|
88
88
|
/**
|
|
89
|
-
* The
|
|
89
|
+
* The set of events that trigger this webhook. For a full list of event types, see the [webhooks documentation](https://tailscale.com/kb/1213/webhooks#events).
|
|
90
90
|
*/
|
|
91
91
|
subscriptions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
92
92
|
}
|
|
@@ -99,11 +99,11 @@ export interface WebhookArgs {
|
|
|
99
99
|
*/
|
|
100
100
|
endpointUrl: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
102
|
-
* The provider type of the endpoint URL.
|
|
102
|
+
* The provider type of the endpoint URL. This determines the payload format sent to the destination. Valid values are `slack`, `mattermost`, `googlechat`, and `discord`.
|
|
103
103
|
*/
|
|
104
104
|
providerType?: pulumi.Input<string>;
|
|
105
105
|
/**
|
|
106
|
-
* The
|
|
106
|
+
* The set of events that trigger this webhook. For a full list of event types, see the [webhooks documentation](https://tailscale.com/kb/1213/webhooks#events).
|
|
107
107
|
*/
|
|
108
108
|
subscriptions: pulumi.Input<pulumi.Input<string>[]>;
|
|
109
109
|
}
|