Created
January 25, 2021 17:54
-
-
Save iht/aa2f2af230925799908f67d4f57ee3fe to your computer and use it in GitHub Desktop.
Pass custom options to your Flex template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_dataflow_flex_template_job" "big_data_job" { | |
provider = google-beta | |
name = "dataflow-flextemplates-job" | |
container_spec_gcs_path = "gs://my-bucket/templates/template.json" | |
parameters = { | |
i_want_streaming_engine = true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment