terraform-provider-google/website/docs/r/google_billing_account_iam_member.md
The Magician 5845ae4d38 Fix documentation around iam member imports (#2865)
Signed-off-by: Modular Magician <magic-modules@google.com>
2019-01-11 17:23:56 -08:00

1.7 KiB

layout page_title sidebar_current description
google Google: google_billing_account_iam_member docs-google-billing-account-iam-member Allows management of a single member for a single binding on the IAM policy for a Google Cloud Platform Billing Account.

google_billing_account_iam_member

Allows creation and management of a single member for a single binding within the IAM policy for an existing Google Cloud Platform Billing Account.

~> Note: This resource must not be used in conjunction with google_billing_account_iam_binding for the same role or they will fight over what your policy should be.

Example Usage

resource "google_billing_account_iam_member" "binding" {
  billing_account_id = "00AA00-000AAA-00AA0A"
  role               = "roles/billing.viewer"
  member             = "user:alice@gmail.com"
}

Argument Reference

The following arguments are supported:

Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

  • etag - (Computed) The etag of the billing account's IAM policy.

Import

IAM member imports use space-delimited identifiers; the resource in question, the role, and the account. This member resource can be imported using the billing_account_id, role, and member identity, e.g.

$ terraform import google_billing_account_iam_member.binding "your-billing-account-id roles/viewer user:foo@example.com"