Skip to content

Commit

Permalink
Fix: ForceNew on EDC.source_uris
Browse files Browse the repository at this point in the history
  • Loading branch information
nevzheng committed Sep 14, 2023
1 parent 54604c0 commit f8c83d8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ func ResourceBigQueryTable() *schema.Resource {
"source_uris": {
Type: schema.TypeList,
Required: true,
ForceNew: true,
Description: `A list of the fully-qualified URIs that point to your data in Google Cloud.`,
Elem: &schema.Schema{Type: schema.TypeString},
},
Expand All @@ -489,7 +490,7 @@ func ResourceBigQueryTable() *schema.Resource {
Default: "NONE",
Description: `The compression type of the data source. Valid values are "NONE" or "GZIP".`,
},
// Schema: Optional] The schema for the data.
// Schema: [Optional] The schema for the data.
// Schema is required for CSV and JSON formats if autodetect is not on.
// Schema is disallowed for Google Cloud Bigtable, Cloud Datastore backups, Avro, Iceberg, ORC, and Parquet formats.
"schema": {
Expand Down

0 comments on commit f8c83d8

Please sign in to comment.