Skip to content

Commit

Permalink
Check
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Hume committed Nov 28, 2023
1 parent cecbe8c commit e766a73
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions integration/source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ resource "materialize_source_load_generator" "load_generator" {
counter_options {
tick_interval = "500ms"
}
expose_progress {
name = "expose_load_gen"
}
}

resource "materialize_source_load_generator" "load_generator_cluster" {
Expand Down Expand Up @@ -79,6 +82,9 @@ resource "materialize_source_postgres" "example_source_postgres" {
name = "table2"
alias = "s2_table1"
}
expose_progress {
name = "expose_postgres"
}
}

resource "materialize_source_postgres" "example_source_postgres_schema" {
Expand Down Expand Up @@ -112,6 +118,9 @@ resource "materialize_source_kafka" "example_source_kafka_format_text" {
value_format {
text = true
}
expose_progress {
name = "expose_kafka"
}
}

resource "materialize_source_kafka" "example_source_kafka_format_bytes" {
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/resource_secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var secretSchema = map[string]*schema.Schema{
"value": {
Description: "The value for the secret. The value expression may not reference any relations, and must be a bytea string literal.",
Type: schema.TypeString,
Optional: true,
Required: true,
Sensitive: true,
},
"ownership_role": OwnershipRoleSchema(),
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/resource_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var tableSchema = map[string]*schema.Schema{
"comment": CommentSchema(false),
},
},
Optional: true,
Required: true,
MinItems: 1,
ForceNew: true,
},
Expand Down

0 comments on commit e766a73

Please sign in to comment.