Skip to content

Commit

Permalink
Update terminology for Event Store Cloud (#3232)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehoban authored Oct 5, 2023
1 parent a82a438 commit 8b3b4a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ meta_desc: Learn how you can use Event Store Cloud Provider for Pulumi to provis
layout: package
---

The Event Store Cloud (ESC) provider for Pulumi can provision many of the cloud resources available in [ESC](https://eventstore.com/cloud/). It uses the ESC API to manage and provision resources.
The Event Store Cloud provider for Pulumi can provision many of the cloud resources available in [Event Store Cloud](https://eventstore.com/cloud/). It uses the Event Store Cloud API to manage and provision resources.

The ESC provider must be configured with credentials to deploy and update resources; see [Installation & Configuration](./installation-configuration) for instructions.
The Event Store Cloud provider must be configured with credentials to deploy and update resources; see [Installation & Configuration](./installation-configuration) for instructions.

## Example

```typescript
import * as esc from "@eventstore/pulumi-eventstorecloud";
import * as eventstore from "@eventstore/pulumi-eventstorecloud";

const project = new esc.Project("sample-project", {
const project = new eventstore.Project("sample-project", {
name: "Improved Chicken Window"
});

const network = new esc.Network("sample-network", {
const network = new eventstore.Network("sample-network", {
name: "Chicken Window Net",
projectId: project.id,
resourceProvider: "aws",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ layout: package

## Installation

The Event Store Cloud (ESC) provider is available as a package in all Pulumi languages:
The Event Store Cloud provider is available as a package in all Pulumi languages:

* JavaScript/TypeScript: [`@eventstore/pulumi-eventstorecloud`](https://www.npmjs.com/package/@eventstore/pulumi-eventstorecloud)
* Go: [`github.com/EventStore/pulumi-eventstorecloud/sdk/go/eventstorecloud`](https://github.com/EventStore/pulumi-eventstorecloud)
Expand Down Expand Up @@ -59,6 +59,6 @@ Required options can be omitted if you configure them using environment variable
| Option | Required/Optional | Description |
|------------------|-------------------|---------------------------------------------------------------------------------------------------------|
| `token` | Required | Access token. You can retrieve this from the ‘Access Tokens’ section of the Event Store Cloud console. |
| `organizationId` | Required | The organization id. You can find it in the organization settings page if the ESC console. |
| `organizationId` | Required | The organization id. You can find it in the organization settings page of the Event Store Cloud console.|
| `url` | Optional | The URL of the Event Store Cloud API. This defaults to the public cloud instance of Event Store Cloud. |
| `tokenStore` | Optional | The location on the local filesystem of the token cache. This is shared with the Event Store Cloud CLI. |

0 comments on commit 8b3b4a6

Please sign in to comment.