@pulumiverse/talos 0.1.1 → 0.1.4
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/README.md +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,28 @@ The Talos Resource Provider lets you manage [Talos Linux](https://talos.dev) mac
|
|
|
6
6
|
|
|
7
7
|
This package is available for several languages/platforms:
|
|
8
8
|
|
|
9
|
+
### Node.js (JavaScript/TypeScript)
|
|
10
|
+
|
|
11
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @pulumiverse/talos
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
or `yarn`:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yarn add @pulumiverse/talos
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Python
|
|
24
|
+
|
|
25
|
+
To use from Python, install using `pip`:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install pulumiverse_talos
|
|
29
|
+
```
|
|
30
|
+
|
|
9
31
|
### Go
|
|
10
32
|
|
|
11
33
|
To use from Go, use `go get` to grab the latest version of the library:
|
|
@@ -14,6 +36,14 @@ To use from Go, use `go get` to grab the latest version of the library:
|
|
|
14
36
|
go get github.com/pulumiverse/pulumi-talos/sdk/go/...
|
|
15
37
|
```
|
|
16
38
|
|
|
39
|
+
### .NET
|
|
40
|
+
|
|
41
|
+
To use from .NET, install using `dotnet add package`:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
dotnet add package Pulumiverse.Talos
|
|
45
|
+
```
|
|
46
|
+
|
|
17
47
|
## Reference
|
|
18
48
|
|
|
19
49
|
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/talos/api-docs/).
|