From 0c6bcd3aa804a3e1e3be432c096cfe792721c075 Mon Sep 17 00:00:00 2001 From: The Magician Date: Fri, 23 Feb 2024 15:57:12 -0800 Subject: [PATCH] docs: fix import example in google_project_iam (#10007) (#7016) Fix the example in the `google_project_iam` documentation. https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/google_project_iam#import [upstream:5599650ebf0ace9601ddfea4dd785741c7e359b9] Signed-off-by: Modular Magician --- .changelog/10007.txt | 2 ++ website/docs/r/cloudfunctions_function.html.markdown | 2 ++ website/docs/r/google_project_iam.html.markdown | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changelog/10007.txt diff --git a/.changelog/10007.txt b/.changelog/10007.txt new file mode 100644 index 0000000000..126505bd3f --- /dev/null +++ b/.changelog/10007.txt @@ -0,0 +1,2 @@ +```release-note:none +``` \ No newline at end of file diff --git a/website/docs/r/cloudfunctions_function.html.markdown b/website/docs/r/cloudfunctions_function.html.markdown index 8a8b26b870..5cfb46f700 100644 --- a/website/docs/r/cloudfunctions_function.html.markdown +++ b/website/docs/r/cloudfunctions_function.html.markdown @@ -149,6 +149,8 @@ Please refer to the field 'effective_labels' for all of the labels present on th * `build_environment_variables` - (Optional) A set of key/value environment variable pairs available during build time. +* `build_worker_pool` - (Optional) Name of the Cloud Build Custom Worker Pool that should be used to build the function. + * `vpc_connector` - (Optional) The VPC Network Connector that this cloud function can connect to. It should be set up as fully-qualified URI. The format of this field is `projects/*/locations/*/connectors/*`. * `vpc_connector_egress_settings` - (Optional) The egress settings for the connector, controlling what traffic is diverted through it. Allowed values are `ALL_TRAFFIC` and `PRIVATE_RANGES_ONLY`. Defaults to `PRIVATE_RANGES_ONLY`. If unset, this field preserves the previously set value. diff --git a/website/docs/r/google_project_iam.html.markdown b/website/docs/r/google_project_iam.html.markdown index 419315c503..33ee748e34 100644 --- a/website/docs/r/google_project_iam.html.markdown +++ b/website/docs/r/google_project_iam.html.markdown @@ -228,7 +228,7 @@ An [`import` block](https://developer.hashicorp.com/terraform/language/import) ( ```tf import { - id = ""{{project_id}} roles/viewer user:foo@example.com"m" + id = "{{project_id}} roles/viewer user:foo@example.com" to = google_project_iam_member.default } ```