Skip to content

Commit

Permalink
Add fields to Datafusion Instance (#4617) (#8763)
Browse files Browse the repository at this point in the history
Co-authored-by: upodroid <cy@borg.dev>
Signed-off-by: Modular Magician <magic-modules@google.com>

Co-authored-by: upodroid <cy@borg.dev>
  • Loading branch information
modular-magician and upodroid authored Mar 24, 2021
1 parent baa9619 commit f431027
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/4617.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none
datafusion: added `dataproc_service_account` field to `google_data_fusion_instance` (beta)
```
11 changes: 10 additions & 1 deletion website/docs/r/data_fusion_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ resource "google_data_fusion_instance" "extended_instance" {
network = "default"
ip_allocation = "10.89.48.0/22"
}
version = "6.1.1"
version = "6.3.0"
dataproc_service_account = data.google_app_engine_default_service_account.default.email
}
data "google_app_engine_default_service_account" "default" {
provider = google-beta
}
```

Expand Down Expand Up @@ -136,6 +141,10 @@ The following arguments are supported:
true, all Data Fusion nodes will have private IP addresses and will not be
able to access the public internet.

* `dataproc_service_account` -
(Optional)
User-managed service account to set on Dataproc when Cloud Data Fusion creates Dataproc to run data processing pipelines.

* `network_config` -
(Optional)
Network configuration options. These are required when a private Data Fusion instance is to be created.
Expand Down

0 comments on commit f431027

Please sign in to comment.