Skip to content

Commit

Permalink
feat(vertexai): Add IAM resources for Vertex AI Endpoint (hashicorp#9454
Browse files Browse the repository at this point in the history
) (hashicorp#16556)

* feat(vertexai): iam resources for vertex ai prediction

* fix: update the import format

* refactor: add two spaces for docs

* refactor: remove the suffix 'generated' from the hand-written tests
[upstream:6b15a46443be95916fd32b81671f0bea3b5cb0cf]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Nov 17, 2023
1 parent 2b8e69f commit b7ede92
Show file tree
Hide file tree
Showing 5 changed files with 225 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/9454.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
vertexai: Added IAM resources for google_vertex_ai_endpoint (beta)
```
4 changes: 2 additions & 2 deletions google/provider/provider_mmv1_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ var handwrittenIAMDatasources = map[string]*schema.Resource{

// Resources
// Generated resources: 340
// Generated IAM resources: 210
// Total generated resources: 550
// Generated IAM resources: 213
// Total generated resources: 553
var generatedResources = map[string]*schema.Resource{
"google_folder_access_approval_settings": accessapproval.ResourceAccessApprovalFolderSettings(),
"google_organization_access_approval_settings": accessapproval.ResourceAccessApprovalOrganizationSettings(),
Expand Down
3 changes: 3 additions & 0 deletions google/services/vertexai/iam_vertex_endpoint_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package vertexai_test
58 changes: 58 additions & 0 deletions website/docs/d/vertex_ai_endpoint_iam_policy.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
# ----------------------------------------------------------------------------
#
# *** AUTO GENERATED CODE *** Type: MMv1 ***
#
# ----------------------------------------------------------------------------
#
# This file is automatically generated by Magic Modules and manual
# changes will be clobbered when the file is regenerated.
#
# Please read more about how to change this file in
# .github/CONTRIBUTING.md.
#
# ----------------------------------------------------------------------------
subcategory: "Vertex AI"
description: |-
A datasource to retrieve the IAM policy state for Vertex AI Endpoint
---


# `google_vertex_ai_endpoint_iam_policy`
Retrieves the current IAM policy data for endpoint
~> **Warning:** This datasource is in beta, and should be used with the terraform-provider-google-beta provider.
See [Provider Versions](https://terraform.io/docs/providers/google/guides/provider_versions.html) for more details on beta resources.



## example

```hcl
data "google_vertex_ai_endpoint_iam_policy" "policy" {
project = google_vertex_ai_endpoint.endpoint.project
location = google_vertex_ai_endpoint.endpoint.location
endpoint = google_vertex_ai_endpoint.endpoint.name
}
```

## Argument Reference

The following arguments are supported:

* `endpoint` - (Required) Used to find the parent resource to bind the IAM policy to
* `location` - (Required) The location for the resource Used to find the parent resource to bind the IAM policy to
* `region` - (Optional) The region for the resource Used to find the parent resource to bind the IAM policy to. If not specified,
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
region is specified, it is taken from the provider configuration.

* `project` - (Optional) The ID of the project in which the resource belongs.
If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.

## Attributes Reference

The attributes are exported:

* `etag` - (Computed) The etag of the IAM policy.

* `policy_data` - (Required only by `google_vertex_ai_endpoint_iam_policy`) The policy data generated by
a `google_iam_policy` data source.
159 changes: 159 additions & 0 deletions website/docs/r/vertex_ai_endpoint_iam.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
---
# ----------------------------------------------------------------------------
#
# *** AUTO GENERATED CODE *** Type: MMv1 ***
#
# ----------------------------------------------------------------------------
#
# This file is automatically generated by Magic Modules and manual
# changes will be clobbered when the file is regenerated.
#
# Please read more about how to change this file in
# .github/CONTRIBUTING.md.
#
# ----------------------------------------------------------------------------
subcategory: "Vertex AI"
description: |-
Collection of resources to manage IAM policy for Vertex AI Endpoint
---

# IAM policy for Vertex AI Endpoint
Three different resources help you manage your IAM policy for Vertex AI Endpoint. Each of these resources serves a different use case:

* `google_vertex_ai_endpoint_iam_policy`: Authoritative. Sets the IAM policy for the endpoint and replaces any existing policy already attached.
* `google_vertex_ai_endpoint_iam_binding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the endpoint are preserved.
* `google_vertex_ai_endpoint_iam_member`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the endpoint are preserved.

A data source can be used to retrieve policy data in advent you do not need creation

* `google_vertex_ai_endpoint_iam_policy`: Retrieves the IAM policy for the endpoint

~> **Note:** `google_vertex_ai_endpoint_iam_policy` **cannot** be used in conjunction with `google_vertex_ai_endpoint_iam_binding` and `google_vertex_ai_endpoint_iam_member` or they will fight over what your policy should be.

~> **Note:** `google_vertex_ai_endpoint_iam_binding` resources **can be** used in conjunction with `google_vertex_ai_endpoint_iam_member` resources **only if** they do not grant privilege to the same role.


~> **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
See [Provider Versions](https://terraform.io/docs/providers/google/guides/provider_versions.html) for more details on beta resources.


## google\_vertex\_ai\_endpoint\_iam\_policy

```hcl
data "google_iam_policy" "admin" {
binding {
role = "roles/viewer"
members = [
"user:[email protected]",
]
}
}
resource "google_vertex_ai_endpoint_iam_policy" "policy" {
project = google_vertex_ai_endpoint.endpoint.project
location = google_vertex_ai_endpoint.endpoint.location
endpoint = google_vertex_ai_endpoint.endpoint.name
policy_data = data.google_iam_policy.admin.policy_data
}
```

## google\_vertex\_ai\_endpoint\_iam\_binding

```hcl
resource "google_vertex_ai_endpoint_iam_binding" "binding" {
project = google_vertex_ai_endpoint.endpoint.project
location = google_vertex_ai_endpoint.endpoint.location
endpoint = google_vertex_ai_endpoint.endpoint.name
role = "roles/viewer"
members = [
"user:[email protected]",
]
}
```

## google\_vertex\_ai\_endpoint\_iam\_member

```hcl
resource "google_vertex_ai_endpoint_iam_member" "member" {
project = google_vertex_ai_endpoint.endpoint.project
location = google_vertex_ai_endpoint.endpoint.location
endpoint = google_vertex_ai_endpoint.endpoint.name
role = "roles/viewer"
member = "user:[email protected]"
}
```


## Argument Reference

The following arguments are supported:

* `endpoint` - (Required) Used to find the parent resource to bind the IAM policy to
* `location` - (Required) The location for the resource Used to find the parent resource to bind the IAM policy to
* `region` - (Optional) The region for the resource Used to find the parent resource to bind the IAM policy to. If not specified,
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
region is specified, it is taken from the provider configuration.

* `project` - (Optional) The ID of the project in which the resource belongs.
If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.

* `member/members` - (Required) Identities that will be granted the privilege in `role`.
Each entry can have one of the following values:
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"

* `role` - (Required) The role that should be applied. Only one
`google_vertex_ai_endpoint_iam_binding` can be used per role. Note that custom roles must be of the format
`[projects|organizations]/{parent-name}/roles/{role-name}`.

* `policy_data` - (Required only by `google_vertex_ai_endpoint_iam_policy`) The policy data generated by
a `google_iam_policy` data source.

## Attributes Reference

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

* `etag` - (Computed) The etag of the IAM policy.

## Import

For all import syntaxes, the "resource in question" can take any of the following forms:

* projects/{{project}}/locations/{{location}}/endpoints/{{name}}
* {{project}}/{{location}}/{{name}}
* {{location}}/{{name}}
* {{name}}

Any variables not passed in the import command will be taken from the provider configuration.

Vertex AI endpoint IAM resources can be imported using the resource identifiers, role, and member.

IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
```
$ terraform import google_vertex_ai_endpoint_iam_member.editor "projects/{{project}}/locations/{{location}}/endpoints/{{endpoint}} roles/viewer user:[email protected]"
```

IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
```
$ terraform import google_vertex_ai_endpoint_iam_binding.editor "projects/{{project}}/locations/{{location}}/endpoints/{{endpoint}} roles/viewer"
```

IAM policy imports use the identifier of the resource in question, e.g.
```
$ terraform import google_vertex_ai_endpoint_iam_policy.editor projects/{{project}}/locations/{{location}}/endpoints/{{endpoint}}
```

-> **Custom Roles**: If you're importing a IAM resource with a custom role, make sure to use the
full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.

## User Project Overrides

This resource supports [User Project Overrides](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#user_project_override).

0 comments on commit b7ede92

Please sign in to comment.