Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Cameron Bates <[email protected]>
  • Loading branch information
ggeorges2015 and cmilesb authored Nov 13, 2023
1 parent cc86890 commit 4779bb6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion content/rc/cloud-integrations/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ For best results, we recommend:
## Update marketplace billing details


### AWS
### AWS Marketplace
To change billing details for an AWS marketplace subscription, we recommend creating a second subscription using the updated billing details and then migrating your existing data to the new subscription.

### Google Cloud
Expand Down
2 changes: 1 addition & 1 deletion content/rc/cloud-integrations/aws-marketplace/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ At this point, you can create a new Flexible subscription using the [standard wo

To confirm this, review the payment method associated with your subscription.

{{<image filename="images/rc/aws-marketplace-billing-confirm.png" alt="The AWS Marketplace billing confirmation." width="450px">}}{{< /image >}}
{{<image filename="images/rc/aws-marketplace-billing-confirm.png" alt="The AWS Marketplace billing confirmation." width="80%">}}{{< /image >}}

If, for whatever reason, your AWS Marketplace account is disabled or otherwise unavailable, you won't be able to use your Flexible subscription until the billing method is updated. For help, [contact support](https://redis.com/company/support/).
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ For your database to be fully secure, you must enable [Transport Layer Security

{{<image filename="images/rc/database-details-configuration-tab-security-tls-client-auth-certificate.png" width="300px" alt="Provide or generate a certificate for TLS client authentication." >}}{{< /image >}}

If you generate your certificate from the admin console, select **Download client certificate** and a ZIP file download will start. The download contains:
If you generate your certificate from the admin console, select **Download client certificate**. The download contains:

- `redis_user.crt` – the certificate's public key.

Expand All @@ -163,7 +163,7 @@ After you store this secret, you can view and copy the [Amazon Resource Name (AR

## Create a vector index in your database {#create-vector-index}

After your database is set up, create an index with a vector field using [FT.CREATE](https://redis.io/commands/ft.create/) as your knowledge base for Amazon Bedrock. You can accomplish this through the use of **RedisInsight** or the `redis-cli`.
After your database is set up, create an index with a vector field using [FT.CREATE](https://redis.io/commands/ft.create/) as your knowledge base for Amazon Bedrock. You can accomplish this using **RedisInsight** or `redis-cli`.

### [RedisInsight](https://redis.io/docs/connect/insight/)

Expand All @@ -177,7 +177,7 @@ To create your vector index in RedisInsight:

![Connect button](/images/rc/connection-wizard-button.png#no-click "Connect button.")

1. In the connection wizard, under **RedisInsight Desktop**, select **Public Endpoint**. Select **Open with RedisInsight**. The database will be automatically configured for you in the tool.
1. In the connection wizard, under **RedisInsight Desktop**, select **Public Endpoint**. Select **Open with RedisInsight** to connect to the database with RedisInsight.

1. Select **Use TLS**. In the **CA Certificate** section, select **Add new CA certificate**. Give the certificate a name in the **Name** field, and enter the contents of `redis_ca.pem` into the **Certificate** field.

Expand Down
4 changes: 2 additions & 2 deletions content/rc/cloud-integrations/gcp-marketplace/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ Here's how to create a new Flexible subscription as part of your Google Cloud Ma

1. Create a Redis Cloud admin account or sign in to an existing account.

1. Select the Redis account to be mapped to your GCP Marketplace account and confirm that your payment method will change and that the connection cannot be undone
1. Select the Redis account to be mapped to your GCP Marketplace account and confirm that your payment method will change and that the connection cannot be undone.

{{<image filename="images/rc/gcp-marketplace-map-account-dialog.png" alt="Use the GCP Marketplace dialog to map your Redis Cloud account to your Google Cloud Marketplace account." width="75%">}}{{< /image >}}

1. Select **Connect account** button to confirm your choice.
1. Select **Connect account** to confirm your choice.

1. After you connect your Redis account to your Google Cloud Marketplace account, a message appears in the upper left corner of the account panel.

Expand Down
12 changes: 6 additions & 6 deletions content/rc/cloud-integrations/terraform/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The steps in this section show you how to plan and create a flexible subscriptio
}
```
Example
Example:
```text
data "rediscloud_payment_method" "card" {
Expand Down Expand Up @@ -101,7 +101,7 @@ The steps in this section show you how to plan and create a flexible subscriptio
}
```
Example
Example:
```text
resource "rediscloud_subscription" "subscription-resource" {
Expand Down Expand Up @@ -150,7 +150,7 @@ The steps in this section show you how to plan and create a flexible subscriptio
}
```
Example
Example:
```text
resource "rediscloud_subscription_database" "database-resource" {
Expand Down Expand Up @@ -205,7 +205,7 @@ The steps in this section show you how to plan and create a flexible subscriptio
3. Run `terraform apply` to apply the changes and enter `yes` to confirm when prompted.
This will take some time. You will see messages like this while the subscription and database are being created.
This will take some time. You will see messages in your terminal while the subscription and database are being created:
```text
rediscloud_subscription.subscription-resource: Creating...
Expand All @@ -214,13 +214,13 @@ The steps in this section show you how to plan and create a flexible subscriptio
rediscloud_subscription.subscription-resource: Still creating... [30s elapsed]
```

When complete you should see something like this:
When provisioning is complete, you will see a message in your terminal:

```text
Apply complete! Resources: 2 added, 0 changed, 0 destroyed.
```

If you want to verify your subscription and database creation you can view that through the Redis Cloud [admin console](https://app.redislabs.com/).
View the [Redis Cloud console](https://app.redislabs.com/) to verify your subscription and database creation.

4. If you want to remove these sample resources, run `terraform destroy`.

Expand Down

0 comments on commit 4779bb6

Please sign in to comment.