terraform-provider-google/website/docs/d/google_billing_account.html.markdown
Kit Ewbank a086e70e79 Add 'google_billing_account' data source (#889)
* Add 'google_billing_account' data source.

* Use 'GetResourceNameFromSelfLink'.

* Use 'ConflictsWith' in schema.

* Use pagination for List() API call.

* Add ability to filter by 'open' attribute.

* Don't use 'ForceNew' for data sources.

* Add 'billing_account' argument and make 'name' an output-only attribute.

* Correct error message.
2017-12-21 16:09:58 -08:00

1.5 KiB

layout page_title sidebar_current description
google Google: google_billing_account docs-google-datasource-billing-account Get information about a Google Billing Account.

google_billing_account

Use this data source to get information about a Google Billing Account.

data "google_billing_account" "acct" {
  display_name = "My Billing Account"
  open         = true
}

resource "google_project" "my_project" {
  name       = "My Project"
  project_id = "your-project-id"
  org_id     = "1234567"

  billing_account = "${data.google_billing_account.acct.id}"
}

Argument Reference

The arguments of this data source act as filters for querying the available billing accounts. The given filters must match exactly one billing account whose data will be exported as attributes. The following arguments are supported:

  • billing_account (Optional) - The name of the billing account in the form {billing_account_id} or billingAccounts/{billing_account_id}.
  • display_name (Optional) - The display name of the billing account.
  • open (Optional) - true if the billing account is open, false if the billing account is closed.

~> NOTE: One of billing_account or display_name must be specified.

Attributes Reference

The following additional attributes are exported:

  • id - The billing account ID.
  • name - The resource name of the billing account in the form billingAccounts/{billing_account_id}.
  • project_ids - The IDs of any projects associated with the billing account.