Skip to content

Commit e2f37fc

Browse files
authored
Remove description field from clickpipes tf modules and examples (#331)
1 parent cfa2305 commit e2f37fc

File tree

24 files changed

+1
-119
lines changed

24 files changed

+1
-119
lines changed

examples/clickpipe/externally_managed_table/main.tf

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,34 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "kafka_username" {
18-
description = "Username"
1915
sensitive = true
2016
}
2117

2218
variable "kafka_password" {
23-
description = "Password"
2419
sensitive = true
2520
}
2621

2722
variable "table_name" {
28-
description = "Table name"
2923
type = string
3024
}
3125

3226
variable "table_columns" {
33-
description = "Table columns"
3427
type = list(object({
3528
name = string
3629
type = string
3730
}))
3831
}
3932

4033
variable "field_mappings" {
41-
description = "Field mappings"
4234
type = list(object({
4335
source_field = string
4436
destination_field = string
@@ -47,7 +39,6 @@ variable "field_mappings" {
4739

4840
resource "clickhouse_clickpipe" "kafka_confluent" {
4941
name = "Confluent 🚀 ClickPipe"
50-
description = "Data pipeline from Confluent to ClickHouse"
5142

5243
service_id = var.service_id
5344

examples/clickpipe/kafka_azure_eventhub/main.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,20 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "azure_eventhub_connection_string" {
18-
description = "Connection string for Azure EventHub"
1915
sensitive = true
2016
}
2117

2218
resource "clickhouse_clickpipe" "kafka_azure_eventhub" {
2319
name = "Azure EventHub 🚀 ClickPipe"
24-
description = "Data pipeline from Azure EventHub to ClickHouse"
2520

2621
service_id = var.service_id
2722

examples/clickpipe/kafka_confluent/main.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,24 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "kafka_username" {
18-
description = "Username"
1915
sensitive = true
2016
}
2117

2218
variable "kafka_password" {
23-
description = "Password"
2419
sensitive = true
2520
}
2621

2722
resource "clickhouse_clickpipe" "kafka_confluent" {
2823
name = "Confluent 🚀 ClickPipe"
29-
description = "Data pipeline from Confluent to ClickHouse"
3024

3125
service_id = var.service_id
3226

examples/clickpipe/kafka_msk_iam_role/main.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,19 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "iam_role" {
18-
description = "IAM role ARN"
1915
}
2016

2117
resource "clickhouse_clickpipe" "kafka_msk" {
2218
name = "MSK 🚀 ClickPipe"
23-
description = "Data pipeline from MSK to ClickHouse"
2419

2520
service_id = var.service_id
2621

examples/clickpipe/kafka_msk_iam_user/main.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,24 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "iam_access_key_id" {
18-
description = "IAM access key ID"
1915
sensitive = true
2016
}
2117

2218
variable "iam_secret_key" {
23-
description = "IAM secret key"
2419
sensitive = true
2520
}
2621

2722
resource "clickhouse_clickpipe" "kafka_msk" {
2823
name = "MSK 🚀 ClickPipe"
29-
description = "Data pipeline from MSK to ClickHouse"
3024

3125
service_id = var.service_id
3226

examples/clickpipe/kafka_offset_strategy/main.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,24 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "kafka_username" {
18-
description = "Username"
1915
sensitive = true
2016
}
2117

2218
variable "kafka_password" {
23-
description = "Password"
2419
sensitive = true
2520
}
2621

2722
resource "clickhouse_clickpipe" "kafka_offset_strategy" {
2823
name = "Offset strategy 🚀 ClickPipe"
29-
description = "Data pipeline with a custom offset strategy"
3024

3125
service_id = var.service_id
3226

examples/clickpipe/kafka_redpanda_scram/main.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,24 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "kafka_username" {
18-
description = "Username"
1915
sensitive = true
2016
}
2117

2218
variable "kafka_password" {
23-
description = "Password"
2419
sensitive = true
2520
}
2621

2722
resource "clickhouse_clickpipe" "kafka_redpanda" {
2823
name = "Redpanda 🚀 ClickPipe"
29-
description = "Data pipeline from Redpanda to ClickHouse"
3024

3125
service_id = var.service_id
3226

examples/clickpipe/kafka_schema_registry/main.tf

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,35 @@ variable "token_key" {}
33
variable "token_secret" {}
44

55
variable "service_id" {
6-
description = "ClickHouse service ID"
76
}
87

98
variable "kafka_brokers" {
10-
description = "Kafka brokers"
119
}
1210

1311
variable "kafka_topics" {
14-
description = "Kafka topics"
1512
}
1613

1714
variable "kafka_username" {
18-
description = "Username"
1915
sensitive = true
2016
}
2117

2218
variable "kafka_password" {
23-
description = "Password"
2419
sensitive = true
2520
}
2621

2722
variable "schema_registry_url" {
28-
description = "Schema Registry URL"
2923
}
3024

3125
variable "schema_registry_username" {
32-
description = "Schema Registry Username"
3326
sensitive = true
3427
}
3528

3629
variable "schema_registry_password" {
37-
description = "Schema Registry Password"
3830
sensitive = true
3931
}
4032

4133
resource "clickhouse_clickpipe" "kafka_schema_registry" {
4234
name = "Schema Registry 🚀 ClickPipe"
43-
description = "Data pipeline with use of Schema Registry"
4435

4536
service_id = var.service_id
4637

examples/clickpipe/kinesis_iam_role/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
resource "clickhouse_clickpipe" "kinesis_iam_role" {
22
service_id = var.service_id
33
name = var.pipe_name
4-
description = var.pipe_description
54

65
source = {
76
kinesis = {

examples/clickpipe/kinesis_iam_role/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ variable "pipe_name" {
2525
default = "kinesis-iam-user-example"
2626
}
2727

28-
variable "pipe_description" {
29-
description = "The description of the ClickPipe"
30-
type = string
31-
default = "Example of a Kinesis ClickPipe using IAM User authentication"
32-
}
3328

3429
variable "database" {
3530
description = "The database to store the data"

0 commit comments

Comments
 (0)