We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://upstash.com/docs/redis/quickstarts/ion
import * as upstash from '@upstash/pulumi' const upstashProvider = new upstash.Provider( 'Upstash', { apiKey: process.env.UPSTASH_API_KEY, email: process.env.UPSTASH_EMAIL, }, { parent: this }, ) sst.linkable(upstash.RedisDatabase, (redis) => ({ properties: { endpoint: redis.endpoint, restToken: redis.restToken, }, })) const redis = new upstash.RedisDatabase( 'Redis', { region: 'us-east-1', databaseName: $interpolate`my-app-${$app.stage}-redis`, eviction: true, tls: true, }, { provider: upstashProvider, parent: this }, ) new sst.aws.Nextjs('Web', { link: [redis], })
The text was updated successfully, but these errors were encountered:
Hey @ryanleecode would you like to contribute? very appreciated.
Sorry, something went wrong.
No branches or pull requests
https://upstash.com/docs/redis/quickstarts/ion
The text was updated successfully, but these errors were encountered: