https://github.com/redislabs/pulumi-rediscloud
Redis Cloud Pulumi Resource Provider
https://github.com/redislabs/pulumi-rediscloud
pulumi redis
Last synced: about 1 year ago
JSON representation
Redis Cloud Pulumi Resource Provider
- Host: GitHub
- URL: https://github.com/redislabs/pulumi-rediscloud
- Owner: RedisLabs
- License: apache-2.0
- Created: 2023-04-16T10:06:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-23T21:16:06.000Z (over 2 years ago)
- Last Synced: 2025-04-12T07:51:44.922Z (about 1 year ago)
- Topics: pulumi, redis
- Language: Go
- Homepage: https://redis.com/cloud/overview/
- Size: 412 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
# Redis Cloud Resource Provider
The Redis Cloud Resource Provider lets you manage [Redis Cloud](https://redislabs.com/redis-enterprise-cloud/overview) resources. The provider is used to interact with the resources supported by Redis Enterprise Cloud. Please note that the provider is available only for Flexible or Annual subscriptions. It is not supported for Fixed or Free subscriptions.
## 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 @rediscloud/pulumi-rediscloud
```
or `yarn`:
```bash
yarn add @rediscloud/pulumi-rediscloud
```
### Python
To use from Python, install using `pip`:
```bash
pip install pulumi_rediscloud
```
### Go
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/RedisLabs/pulumi-rediscloud/sdk/go/...
```
## Configuration
The following configuration points are available for the `rediscloud` provider:
- `apiKey` (environment: `REDISCLOUD_ACCESS_KEY`) - This is the Redis Enterprise Cloud API account key. It must be provided but can also be set by the environment variable.
- `secretKey` (environment: `REDISCLOUD_SECRET_KEY`) - This is the Redis Enterprise Cloud API secret key. It must be provided but can also be set by the environment variable.
## Reference
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/rediscloud/api-docs/).