{"id":18535740,"url":"https://github.com/iamfrench/terraform-google-billing-export","last_synced_at":"2025-05-15T00:30:45.057Z","repository":{"id":237455798,"uuid":"618163298","full_name":"IAmFrench/terraform-google-billing-export","owner":"IAmFrench","description":"Terraform module witch creates billing export on GCP.","archived":false,"fork":false,"pushed_at":"2023-03-27T01:01:04.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-17T07:32:32.758Z","etag":null,"topics":["gcp","google-billing","google-cloud","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/IAmFrench/billing-export/google/latest","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IAmFrench.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-23T22:07:32.000Z","updated_at":"2024-11-29T05:44:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"8dc9a07d-bad8-454f-a6f0-67716c97170f","html_url":"https://github.com/IAmFrench/terraform-google-billing-export","commit_stats":null,"previous_names":["iamfrench/terraform-google-billing-export"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmFrench%2Fterraform-google-billing-export","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmFrench%2Fterraform-google-billing-export/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmFrench%2Fterraform-google-billing-export/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmFrench%2Fterraform-google-billing-export/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IAmFrench","download_url":"https://codeload.github.com/IAmFrench/terraform-google-billing-export/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254250835,"owners_count":22039282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gcp","google-billing","google-cloud","terraform","terraform-module"],"created_at":"2024-11-06T19:27:08.266Z","updated_at":"2025-05-15T00:30:44.878Z","avatar_url":"https://github.com/IAmFrench.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google Cloud Billing export Terraform Module\n\nTerraform module witch creates billing export on GCP.\n\nThis module will create BigQuery datasets for both standard and detailed billing exports.\n\nYou will need to complete the setup by manually linking in the Google Cloud console dataset ids to billing exports. (As there is not API / Terraform resource yet).\n\nLearn more: https://cloud.google.com/billing/docs/how-to/export-data-bigquery-setup\n\nFeature Request: https://issuetracker.google.com/issues/70525274\n\nGitHub issue: https://github.com/hashicorp/terraform-provider-google/issues/4848\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.1.0 |\n| \u003ca name=\"requirement_google\"\u003e\u003c/a\u003e [google](#requirement\\_google) | \u003e= 4.58.0 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_google\"\u003e\u003c/a\u003e [google](#provider\\_google) | \u003e= 4.58.0 |\n\n## Modules\n\nNo modules.\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [google_bigquery_dataset.detailed_billing_export_dataset](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/bigquery_dataset) | resource |\n| [google_bigquery_dataset.standard_billing_export_dataset](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/bigquery_dataset) | resource |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_billing_dataset_location\"\u003e\u003c/a\u003e [billing\\_dataset\\_location](#input\\_billing\\_dataset\\_location) | Location used for BigQuery billing datasets. | `string` | n/a | yes |\n| \u003ca name=\"input_billing_project_id\"\u003e\u003c/a\u003e [billing\\_project\\_id](#input\\_billing\\_project\\_id) | Project ID used for hosting BigQuery billing datasets. | `string` | n/a | yes |\n| \u003ca name=\"input_detailed_billing_export_dataset_id\"\u003e\u003c/a\u003e [detailed\\_billing\\_export\\_dataset\\_id](#input\\_detailed\\_billing\\_export\\_dataset\\_id) | Dataset ID used for the detailed billing export. | `string` | `\"detailed_billing_export\"` | no |\n| \u003ca name=\"input_standard_billing_export_dataset_id\"\u003e\u003c/a\u003e [standard\\_billing\\_export\\_dataset\\_id](#input\\_standard\\_billing\\_export\\_dataset\\_id) | Dataset ID used for the standard billing export. | `string` | `\"standard_billing_export\"` | no |\n\n## Outputs\n\nNo outputs.\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamfrench%2Fterraform-google-billing-export","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamfrench%2Fterraform-google-billing-export","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamfrench%2Fterraform-google-billing-export/lists"}