npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ionos-cloud/sdk-pulumi

v0.2.3

Published

A Pulumi package for creating and managing ionoscloud cloud resources.

Downloads

401

Readme

PkgGoDev

Ionoscloud provider for Pulumi

The Ionoscloud resource provider for Pulumi lets you use Ionoscloud resources in your cloud programs. To use this package, install the Pulumi CLI.

Installing

This package is available in many languages in the standard packaging formats.

Node.js (Java/TypeScript)

To use JavaScript or TypeScript in Node.js, install using either npm:

npm install @ionos-cloud/sdk-pulumi

or yarn:

yarn add @ionos-cloud/sdk-pulumi

Python

To use Python, install using pip:

pip install pulumi_ionoscloud

Go

To use Go, use go get to grab the latest version of the library

$ go get github.com/pulumi/pulumi-ionoscloud/sdk/go

.NET

To use from .NET, install using dotnet add package:

dotnet add package Ionoscloud.Pulumi.Ionoscloud

Environment Variables

| Environment Variable | Description | |-------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | IONOS_USERNAME | Specify the username used to login, to authenticate against the IONOS Cloud API | | IONOS_PASSWORD | Specify the password used to login, to authenticate against the IONOS Cloud API | | IONOS_TOKEN | Specify the token used to login, if a token is being used instead of username and password | | IONOS_API_URL | Specify the API URL. It will overwrite the API endpoint default value api.ionos.com. It is not necessary to override this value unless you have special routing config | | IONOS_LOG_LEVEL | Specify the Log Level used to log messages. Possible values: Off, Debug, Trace | | IONOS_PINNED_CERT | Specify the SHA-256 public fingerprint here, enables certificate pinning | | IONOS_CONTRACT_NUMBER | Specify the contract number on which you wish to provision. Only valid for reseller accounts, for other types of accounts the header will be ignored | | IONOS_S3_ACCESS_KEY | Specify the access key used to authenticate against the IONOS Object Storage API | | IONOS_S3_SECRET_KEY | Specify the secret key used to authenticate against the IONOS Object Storage API | | IONOS_S3_REGION | Region for IONOS Object Storage operations. Default value: eu-central-3. If you use IONOS_API_URL_OBJECT_STORAGE, IONOS_S3_REGION is mandatory |

Certificate pinning:

You can enable certificate pinning if you want to bypass the normal certificate checking procedure, by doing the following:

Set env variable IONOS_PINNED_CERT=<insert_sha256_public_fingerprint_here>

You can get the sha256 fingerprint most easily from the browser by inspecting the certificate.

Debugging

You can enable logging now using the IONOS_LOG_LEVEL env variable. Allowed values: off, debug and trace. Defaults to off.

⚠️ Note: We recommend you only use trace level for debugging purposes. Disable it in your production environments because it can log sensitive data. It logs the full request and response without encryption, even for an HTTPS call. Verbose request and response logging can also significantly impact your application’s performance.

$ export IONOS_LOG_LEVEL=debug