Skip to content

Commit

Permalink
Merge pull request #8957 from terraform-providers/d-aws_msk_cluster-tls
Browse files Browse the repository at this point in the history
docs/resource/aws_msk_cluster: Additional information about bootstrap_brokers and bootstrap_brokers_tls
  • Loading branch information
bflad authored Jun 18, 2019
2 parents 3eae4dc + 7dcd372 commit f8ae819
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions website/docs/r/msk_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,18 @@ resource "aws_msk_cluster" "example" {
}
output "zookeeper_connect_string" {
value = "${aws_msk_cluster.example.zookeeper_connect_string}"
value = "${aws_msk_cluster.example.zookeeper_connect_string}"
}
output "bootstrap_brokers" {
value = "${aws_msk_cluster.example.bootstrap_brokers}"
description = "Plaintext connection host:port pairs"
value = "${aws_msk_cluster.example.bootstrap_brokers}"
}
output "bootstrap_brokers_tls" {
description = "TLS connection host:port pairs"
value = "${aws_msk_cluster.example.bootstrap_brokers_tls}"
}
```

## Argument Reference
Expand Down Expand Up @@ -132,8 +137,8 @@ The following arguments are supported:
In addition to all arguments above, the following attributes are exported:

* `arn` - Amazon Resource Name (ARN) of the MSK cluster.
* `bootstrap_brokers` - A comma separated list of one or more hostname:port pairs of kafka brokers suitable to boostrap connectivity to the kafka cluster.
* `bootstrap_brokers_tls` - A comma separated list of one or more DNS names (or IPs) and TLS port pairs kafka brokers suitable to boostrap connectivity to the kafka cluster.
* `bootstrap_brokers` - A comma separated list of one or more hostname:port pairs of kafka brokers suitable to boostrap connectivity to the kafka cluster. Only contains value if `client_broker` encryption in transit is set to `PLAINTEXT` or `TLS_PLAINTEXT`.
* `bootstrap_brokers_tls` - A comma separated list of one or more DNS names (or IPs) and TLS port pairs kafka brokers suitable to boostrap connectivity to the kafka cluster. Only contains value if `client_broker` encryption in transit is set to `TLS_PLAINTEXT` or `TLS`.
* `current_version` - Current version of the MSK Cluster used for updates, e.g. `K13V1IB3VIYZZH`
* `encryption_info.0.encryption_at_rest_kms_key_arn` - The ARN of the KMS key used for encryption at rest of the broker data volumes.
* `zookeeper_connect_string` - A comma separated list of one or more IP:port pairs to use to connect to the Apache Zookeeper cluster.
Expand Down

0 comments on commit f8ae819

Please sign in to comment.