Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update argument name in resource aws_msk_replicator #40646

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/docs/r/msk_replicator.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "aws_msk_replicator" "test" {


topic_replication {
topic_configuration_name {
topic_name_configuration {
type = "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS"
}
topics_to_replicate = [".*"]
Expand Down Expand Up @@ -99,7 +99,7 @@ The following arguments are required:

### topic_replication Argument Reference

* `topic_configuration_name` - (Optional) Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
* `topic_name_configuration` - (Optional) Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
* `topics_to_replicate` - (Required) List of regular expression patterns indicating the topics to copy.
* `topics_to_exclude` - (Optional) List of regular expression patterns indicating the topics that should not be replica.
* `detect_and_copy_new_topics` - (Optional) Whether to periodically check for new topics and partitions.
Expand All @@ -114,7 +114,7 @@ The following arguments are required:
* `detect_and_copy_new_consumer_groups` - (Optional) Whether to periodically check for new consumer groups.
* `synchronise_consumer_group_offsets` - (Optional) Whether to periodically write the translated offsets to __consumer_offsets topic in target cluster.

### topic_configuration_name
### topic_name_configuration

* `type` - (optional) The type of topic configuration name. Supports `PREFIXED_WITH_SOURCE_CLUSTER_ALIAS` and `IDENTICAL`.

Expand Down
Loading