terraform-provider-google/website/docs/r/google_billing_account_iam_binding.md
The Magician 43d40f4065 Change IAM binding to be authoritative (#2764)
<!-- This change is generated by MagicModules. -->
/cc @chrisst
2019-01-04 15:30:22 -08:00

1.9 KiB

layout page_title sidebar_current description
google Google: google_billing_account_iam_binding docs-google-billing-account-iam-binding Allows management of a single binding with an IAM policy for a Google Cloud Platform Billing Account.

google_billing_account__iam_binding

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

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

~> Note: On create, this resource will overwrite members of any existing roles. Use terraform import and inspect the terraform plan output to ensure your existing members are preserved.

Example Usage

resource "google_billing_account_iam_binding" "binding" {
  billing_account_id = "00AA00-000AAA-00AA0A"
  role               = "roles/billing.viewer"

  members = [
    "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 binding imports use space-delimited identifiers; first the resource in question and then the role. These bindings can be imported using the billing_account_id and role, e.g.

$ terraform import google_billing_account_iam_binding.binding "your-billing-account-id roles/viewer"