@upcloud/pulumi-upcloud 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/README.md +53 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -54,6 +54,59 @@ The following configuration points are available for the `upcloud` provider:
54
54
  - `UPCLOUD_USERNAME` (environment variable) - the username of the account to use
55
55
  - `UPCLOUD_PASSWORD` (environment variable) - the password of the account to use
56
56
 
57
+ ## Templates
58
+
59
+ We have created templates in your language of choice to bootstrap your projects.
60
+
61
+ They will set up the project and set up:
62
+
63
+ - An UpCloud Managed Object Storage instance.
64
+ - A Bucket inside the object storage.
65
+
66
+ ### .NET
67
+
68
+ #### 🛠 Prerequisites
69
+ - Install [Pulumi CLI](https://www.pulumi.com/docs/install/)
70
+ - Install [.NET 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
71
+ - Set up UpCloud API credentials as explained in the configuration section
72
+
73
+ #### Set up your project using the template
74
+ - From the new project directory:
75
+ - pulumi new https://github.com/UpCloudLtd/pulumi-upcloud/tree/main/examples/templates/upcloud-csharp
76
+
77
+ ### Typescript
78
+
79
+ #### 🛠 Prerequisites
80
+ - Install [Pulumi CLI](https://www.pulumi.com/docs/install/)
81
+ - Install [Node.js](https://nodejs.org/)
82
+ - Set up UpCloud API credentials as explained in the configuration section
83
+
84
+ #### Set up your project using the template
85
+ - From the new project directory:
86
+ - pulumi new https://github.com/UpCloudLtd/pulumi-upcloud/tree/main/examples/templates/upcloud-typescript
87
+
88
+ ### Go
89
+
90
+ #### 🛠 Prerequisites
91
+ - Install [Pulumi CLI](https://www.pulumi.com/docs/install/)
92
+ - Install [Go](https://golang.org/dl/)
93
+ - Set up UpCloud API credentials as explained in the configuration section
94
+
95
+ #### Set up your project using the template
96
+ - From the new project directory:
97
+ - pulumi new https://github.com/UpCloudLtd/pulumi-upcloud/tree/main/examples/templates/upcloud-go
98
+
99
+ ### Python
100
+
101
+ #### 🛠 Prerequisites
102
+ - Install [Pulumi CLI](https://www.pulumi.com/docs/install/)
103
+ - Install [Python 3](https://www.python.org/downloads/)
104
+ - Set up UpCloud API credentials as explained in the configuration section
105
+
106
+ #### Set up your project using the template
107
+ - From the new project directory:
108
+ - pulumi new https://github.com/UpCloudLtd/pulumi-upcloud/tree/main/examples/templates/upcloud-python
109
+
57
110
  <!--
58
111
  ## Reference
59
112
 
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@upcloud/pulumi-upcloud",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A Pulumi package for creating and managing UpCloud resources.",
5
5
  "keywords": [
6
- "UpCloud",
6
+ "pulumi",
7
+ "upcloud",
7
8
  "category/cloud"
8
9
  ],
9
10
  "homepage": "https://upcloud.com",
@@ -23,7 +24,7 @@
23
24
  "pulumi": {
24
25
  "resource": true,
25
26
  "name": "upcloud",
26
- "version": "0.0.5",
27
+ "version": "0.0.6",
27
28
  "server": "github://api.github.com/UpCloudLtd/pulumi-upcloud"
28
29
  }
29
30
  }