Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
Fix a typo in index.md (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
linouk23 committed Oct 15, 2021
1 parent d06ec57 commit b632041
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/index.md
Expand Up @@ -17,8 +17,8 @@ Use the Confluent Cloud provider to deploy and manage [Confluent Cloud](https://
```terraform
# Configure the Confluent Cloud Provider
provider "confluentcloud" {
username = var.confluent_cloud_api_key # optionally use CONFLUENT_CLOUD_API_KEY env var
password = var.confluent_cloud_api_secret # optionally use CONFLUENT_CLOUD_API_SECRET env var
api_key = var.confluent_cloud_api_key # optionally use CONFLUENT_CLOUD_API_KEY env var
api_secret = var.confluent_cloud_api_secret # optionally use CONFLUENT_CLOUD_API_SECRET env var
}
# Create the resources
```
Expand Down Expand Up @@ -48,8 +48,8 @@ You can also provide static credentials in-line directly, or by input variable (

```terraform
provider "confluentcloud" {
username = var.confluent_cloud_api_key
password = var.confluent_cloud_api_secret
api_key = var.confluent_cloud_api_key
api_secret = var.confluent_cloud_api_secret
}
```

Expand Down

0 comments on commit b632041

Please sign in to comment.