Skip to content

Commit

Permalink
README update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mongey committed Jun 3, 2018
1 parent f9759eb commit fa04ea5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ resource "kafka_topic" "logs" {
}
```

# Provider Configuration
| Property | Description | Default |
| ---------------- | ----------------------- | ---------- |
| `bootstrap_servers` | A list of host:port addresses that will be used to discover the full set of alive brokers | `Required` |
| `ca_cert_file` | The path to a CA certificate file to validate the server's certificate. | `""` |
| `client_cert_file` | The path the a file containing the client certificate -- Use for Client authentication to Kafka. | `""` |
| `client_key_file` | Path to a file containing the private key that the client certificate was issued for. | `""` |
| `skip_tls_verify` | Skip TLS verification. | `false` |
| `tls_enabled` | Enable communication with the Kafka Cluster over TLS. | `false` |

# Importing Existing Topics
You can import topics with the following

Expand Down
2 changes: 1 addition & 1 deletion kafka/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func Provider() terraform.ResourceProvider {
Type: schema.TypeBool,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("KAFKA_ENABLE_TLS", ""),
Description: "Set this to true only if the target Vault server is an insecure development instance.",
Description: "Enable communication with the Kafka Cluster over TLS.",
},
"timeout": {
Type: schema.TypeInt,
Expand Down

0 comments on commit fa04ea5

Please sign in to comment.