-
Notifications
You must be signed in to change notification settings - Fork 0
Setup documentation for release #140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| --- | ||
| title: stackit | ||
| meta_desc: Learn how to use Pulumi's STACKIT provider to manage STACKIT resources. | ||
| layout: package | ||
| --- | ||
|
|
||
| <div align="center"> | ||
Fyusel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <br> | ||
| <img src=".github/images/stackit-logo.svg" alt="STACKIT logo" width="50%"/> | ||
| <br> | ||
| <br> | ||
| </div> | ||
|
|
||
| # STACKIT Pulumi Provider (ALPHA) | ||
|
|
||
| [](https://www.apache.org/licenses/LICENSE-2.0) | ||
|
|
||
| > [!WARNING] | ||
| > This STACKIT Pulumi Provider is in an ALPHA state. Currently, only IaaS and Resource Manager services in TypeScript are supported. More functionality will be supported soon. Your feedback is appreciated! Feel free to open GitHub issues to provide feature requests and bug reports. | ||
|
|
||
| The STACKIT Pulumi Provider lets you manage [STACKIT](https://www.stackit.de/en/) resources. | ||
|
|
||
|
|
||
| ## Reporting issues | ||
|
|
||
| If you encounter any issues or have suggestions for improvements, please open an issue in the repository or create a ticket in the [STACKIT Help Center](https://support.stackit.cloud/). | ||
|
|
||
| ## License | ||
|
|
||
| Apache 2.0 | ||
|
|
||
| ## Installing | ||
|
|
||
| This package is available for several languages/platforms: | ||
|
|
||
| ### Node.js (JavaScript/TypeScript) | ||
|
|
||
| To use from JavaScript or TypeScript in Node.js, install using either `npm`: | ||
|
|
||
| ```bash | ||
| npm install @stackitcloud/pulumi-stackit | ||
| ``` | ||
|
|
||
| or `yarn`: | ||
|
|
||
| ```bash | ||
| yarn add @stackitcloud/pulumi-stackit | ||
| ``` | ||
|
|
||
| ### Python | ||
|
|
||
| To use from Python, install using `pip`: | ||
|
|
||
| ```bash | ||
| pip install pulumi_stackit | ||
| ``` | ||
|
|
||
| ### Go | ||
|
|
||
| To use from Go, use `go get` to grab the latest version of the library: | ||
|
|
||
| ```bash | ||
| go get github.com/stackitcloud/pulumi-stackit/sdk | ||
| ``` | ||
|
|
||
| ### .NET | ||
|
|
||
| To use from .NET, install using `dotnet add package`: | ||
|
|
||
| ```bash | ||
| dotnet add package Pulumi.stackit | ||
| ``` | ||
|
|
||
| ## Example | ||
|
|
||
| {{< chooser language "typescript" >}} | ||
|
|
||
| {{% choosable language typescript %}} | ||
|
|
||
| ```typescript | ||
| import * as pulumi from "@pulumi/pulumi"; | ||
| import * as stackit from "@stackitcloud/pulumi-stackit"; | ||
|
|
||
| const exampleWithName = new stackit.Network("example_with_name", { | ||
| projectId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // Replace with your actual project ID | ||
| name: "example-with-name", | ||
| }); | ||
| ``` | ||
|
|
||
| {{% /choosable %}} | ||
| {{< /chooser >}} | ||
|
|
||
| For more examples, please have a look at the [Examples](./examples/). | ||
|
|
||
| A detailed authentication guide, information on how to use beta and experimental resources, and available configuration options can be found under [Installation Configuration](./docs/installation-configuration.md). | ||
|
|
||
| ## Reference | ||
|
|
||
| For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/stackit/api-docs/). | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.