This commit is contained in:
2024-04-30 07:08:23 +02:00
commit a711247971
2043 changed files with 16874 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: google_dataproc_cluster
# key: goog_dataproc_cluster
# --
resource "google_dataproc_cluster" "${1:name}" {
name = "${2:name}"
}

View File

@@ -0,0 +1,14 @@
# -*- mode: snippet -*-
# name: google_dataproc_job
# key: goog_dataproc_job
# --
resource "google_dataproc_job" "${1:name}" {
placement {
cluster_name = "${2:cluster_name}"
}
${3:config_type}_config {
${4:arguments}
}
}