Metadata-Version: 2.4
Name: thulasirajkomminar_influxdb
Version: 1.6.0
Summary: A Pulumi package for creating and managing InfluxDB resources.
Home-page: https://www.influxdata.com
License: Apache-2.0
Project-URL: Repository, https://github.com/thulasirajkomminar/pulumi-influxdb
Keywords: pulumi influxdb category/database
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: parver>=0.2.1
Requires-Dist: pulumi<4.0.0,>=3.0.0
Requires-Dist: semver>=2.8.1
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# InfluxDB Resource Provider

The InfluxDB Resource Provider lets you manage [InfluxDB](https://www.influxdata.com/) resources.

## Supported InfluxDB flavours

### v3

* [InfluxDB Cloud Serverless](https://www.influxdata.com/products/influxdb-cloud/serverless/)

### v2

* [InfluxDB Cloud TSM](https://docs.influxdata.com/influxdb/cloud/)
* [InfluxDB OSS](https://docs.influxdata.com/influxdb/v2/)

## 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 @thulasirajkomminar/influxdb
```

or `yarn`:

```bash
yarn add @thulasirajkomminar/influxdb
```

### Python

To use from Python, install using `pip`:

```bash
pip install thulasirajkomminar_influxdb
```

### Go

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

```bash
go get github.com/thulasirajkomminar/pulumi-influxdb/sdk/go/...
```

### .NET

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

```bash
dotnet add package ThulasirajKomminar.InfluxDB
```

## Configuration

The following configuration points are available for the `influxdb` provider:

- `influxdb:password` (environment: `INFLUXDB_PASSWORD`) - The InfluxDB password
- `influxdb:token` (environment: `INFLUXDB_TOKEN`) - An InfluxDB token string
- `influxdb:url` (environment: `INFLUXDB_URL`) - The InfluxDB server URL
- `influxdb:username` (environment: `INFLUXDB_USERNAME`) - The InfluxDB username

## Authentication

The InfluxDB provider supports two [authentication methods](https://docs.influxdata.com/influxdb/v2/api/v2/#tag/Authentication):

* Token-based authentication (recommended).
* Username and password authentication.

### Authentication Priority

When both authentication methods are provided, **token authentication takes priority**. This means:

- If both `token` and `username`/`password` are configured, the provider will use token authentication
- Token authentication is the recommended method for better security and simplicity
- Username/password authentication is used only when no token is provided

## Reference

For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/influxdb/api-docs/).
