diff --git a/third_party/terraform/website/docs/r/google_project_iam.html.markdown b/third_party/terraform/website/docs/r/google_project_iam.html.markdown index a5f7b2ec81c8..94c95c523f77 100644 --- a/third_party/terraform/website/docs/r/google_project_iam.html.markdown +++ b/third_party/terraform/website/docs/r/google_project_iam.html.markdown @@ -47,7 +47,7 @@ data "google_iam_policy" "admin" { } ``` -With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html)): +With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html), Whitelist-only): ```hcl resource "google_project_iam_policy" "project" { @@ -87,7 +87,7 @@ resource "google_project_iam_binding" "project" { } ``` -With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html)): +With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html), Whitelist-only): ```hcl resource "google_project_iam_binding" "project" { @@ -116,7 +116,7 @@ resource "google_project_iam_member" "project" { } ``` -With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html)): +With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html), Whitelist-only): ```hcl resource "google_project_iam_member" "project" { @@ -179,7 +179,7 @@ will not be inferred from the provider. * `audit_log_config` - (Required only by google\_project\_iam\_audit\_config) The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below. -* `condition` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. +* `condition` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. You must be whitelisted for the IAM Conditions private beta in order to use them in Terraform. Structure is documented below. --- diff --git a/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown b/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown index 1b2ff1a490fe..30e44b495918 100644 --- a/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown +++ b/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown @@ -64,7 +64,7 @@ resource "google_service_account_iam_binding" "admin-account-iam" { } ``` -With IAM Conditions ([beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)): +With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html), Whitelist-only): ```hcl resource "google_service_account" "sa" { @@ -112,7 +112,7 @@ resource "google_service_account_iam_member" "gce-default-account-iam" { } ``` -With IAM Conditions ([beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)): +With IAM Conditions ([beta](https://terraform.io/docs/providers/google/provider_versions.html), Whitelist-only): ```hcl resource "google_service_account" "sa" { @@ -155,7 +155,7 @@ The following arguments are supported: * `policy_data` - (Required only by `google_service_account_iam_policy`) The policy data generated by a `google_iam_policy` data source. -* `condition` - (Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. +* `condition` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. You must be whitelisted for the IAM Conditions private beta in order to use them in Terraform. Structure is documented below. The `condition` block supports: