diff --git a/README.md b/README.md index 869e6239..3e6c3770 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ so that all dependencies are met. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | bigquery\_options | (Optional) Options that affect sinks exporting data to BigQuery. use\_partitioned\_tables - (Required) Whether to use BigQuery's partition tables. |
object({
use_partitioned_tables = bool
})
| `null` | no | -| description | A description of this sink. The maximum length of the description is 8000 characters. | `string` | `""` | no | +| description | A description of this sink. The maximum length of the description is 8000 characters. | `string` | `null` | no | | destination\_uri | The self\_link URI of the destination resource (This is available as an output coming from one of the destination submodules) | `string` | n/a | yes | | disabled | (Optional) If set to true, then the sink is disabled and it does not export any log entries. | `bool` | `false` | no | | exclusions | (Optional) A list of sink exclusion filters. |
list(object({
name = string,
description = string,
filter = string,
disabled = bool
}))
| `[]` | no | diff --git a/variables.tf b/variables.tf index fa7b5bed..03ee7caa 100644 --- a/variables.tf +++ b/variables.tf @@ -39,7 +39,7 @@ variable "log_sink_name" { variable "description" { description = "A description of this sink. The maximum length of the description is 8000 characters." type = string - default = "" + default = null } variable "parent_resource_id" {