Skip to content

Commit

Permalink
Merge pull request #34 from averbuks/averbuks-fix-spelling
Browse files Browse the repository at this point in the history
Fix typo in inputs/outputs
  • Loading branch information
morgante authored Sep 27, 2019
2 parents a2f1dc7 + c5b3bfb commit 5be83e4
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ This module provisions a dataset and a table with an associated JSON schema.
| description | Dataset description | string | n/a | yes |
| expiration | TTL of tables using the dataset in MS | string | `"null"` | no |
| location | The regional location for the dataset only US and EU are allowed in module | string | `"US"` | no |
| project\_id | Project wheree the dataset and table are created | string | n/a | yes |
| project\_id | Project where the dataset and table are created | string | n/a | yes |
| tables | A list of objects which include table_id, schema, and labels. | object | `<list>` | no |
| time\_partitioning | Configures time-based partitioning for this table | string | n/a | yes |

Expand All @@ -86,7 +86,7 @@ This module provisions a dataset and a table with an associated JSON schema.
| dataset\_id | Unique id for the dataset being provisioned |
| dataset\_labels | Key value pairs in a map for dataset labels |
| dataset\_name | Friendly name for the dataset being provisioned |
| dataset\_project | Project wheree the dataset and table are created |
| dataset\_project | Project where the dataset and table are created |
| table\_id | Unique id for the table being provisioned |
| table\_labels | Key value pairs in a map for table labels |
| table\_name | Friendly name for the table being provisioned |
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_bq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The basic_bq example uses the root terraform-google-bigquery module to deploy a
|------|-------------|:----:|:-----:|:-----:|
| dataset\_labels | A mapping of labels to assign to the table | map(string) | n/a | yes |
| expiration | TTL of tables using the dataset in MS | string | `"null"` | no |
| project\_id | Project wheree the dataset and table are created | string | n/a | yes |
| project\_id | Project where the dataset and table are created | string | n/a | yes |
| tables | A list of maps that includes both table_id and schema in each element, the table(s) will be created on the single dataset | object | `<list>` | no |
| time\_partitioning | Configures time-based partitioning for this table | string | n/a | yes |

Expand Down
2 changes: 1 addition & 1 deletion examples/basic_bq/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "expiration" {
}

variable "project_id" {
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

variable "time_partitioning" {
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple_tables/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This example is a good reference to understand and test the module usage.
|------|-------------|:----:|:-----:|:-----:|
| dataset\_labels | A mapping of labels to assign to the table | map(string) | n/a | yes |
| expiration | TTL of tables using the dataset in MS | string | `"null"` | no |
| project\_id | Project wheree the dataset and table are created | string | n/a | yes |
| project\_id | Project where the dataset and table are created | string | n/a | yes |
| tables | A list of maps that includes both table_id and schema in each element, the table(s) will be created on the single dataset | object | `<list>` | no |
| time\_partitioning | Configures time-based partitioning for this table | string | n/a | yes |

Expand Down
2 changes: 1 addition & 1 deletion examples/multiple_tables/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "expiration" {
}

variable "project_id" {
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

variable "time_partitioning" {
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ output "dataset_name" {

output "dataset_project" {
value = google_bigquery_dataset.main.project
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

output "table_id" {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/full/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ output "dataset_name" {

output "dataset_project" {
value = module.example.dataset_project
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

output "table_id" {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/full/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "expiration" {
}

variable "project_id" {
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

variable "time_partitioning" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ variable "expiration" {
}

variable "project_id" {
description = "Project wheree the dataset and table are created"
description = "Project where the dataset and table are created"
}

variable "time_partitioning" {
Expand Down

0 comments on commit 5be83e4

Please sign in to comment.