-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to load into BigQuery from GCP Quickstart Examples (closes …
…#43)
- Loading branch information
Showing
12 changed files
with
400 additions
and
85 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Will be prefixed to all resource names | ||
# Use this to easily identify the resources created and provide entropy for subsequent environments | ||
prefix = "sp" | ||
|
||
# The project to deploy the infrastructure into | ||
project_id = "PROJECT_ID_TO_DEPLOY_INTO" | ||
|
||
# Where to deploy the infrastructure | ||
region = "REGION_TO_DEPLOY_INTO" | ||
|
||
# --- Default Network | ||
# Update to the network you would like to deploy into | ||
# | ||
# Note: If you opt to use your own network then you will need to define a subnetwork to deploy into as well | ||
network = "default" | ||
subnetwork = "" | ||
|
||
# --- SSH | ||
# Update this to your IP Address | ||
ssh_ip_allowlist = ["999.999.999.999/32"] | ||
# Generate a new SSH key locally with `ssh-keygen` | ||
# ssh-keygen -t rsa -b 4096 | ||
ssh_key_pairs = [ | ||
{ | ||
user_name = "snowplow" | ||
public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQA0jSi9//bRsHW4M6czodTs6smCXsxZ0gijzth0aBmycE= [email protected]" | ||
} | ||
] | ||
|
||
# --- Iglu Server Configuration | ||
# Iglu Server DNS output from the Iglu Server stack | ||
iglu_server_dns_name = "http://CHANGE-TO-MY-IGLU-IP" | ||
# Used for API actions on the Iglu Server | ||
# Change this to the same UUID from when you created the Iglu Server | ||
iglu_super_api_key = "00000000-0000-0000-0000-000000000000" | ||
|
||
# --- Snowplow BigQuery Loader | ||
bigquery_db_enabled = true | ||
|
||
# See for more information: https://registry.terraform.io/modules/snowplow-devops/collector-pubsub-ce/google/latest#telemetry | ||
# Telemetry principles: https://docs.snowplowanalytics.com/docs/open-source-quick-start/what-is-the-quick-start-for-open-source/telemetry-principles/ | ||
user_provided_id = "" | ||
telemetry_enabled = true | ||
|
||
# --- SSL Configuration (optional) | ||
ssl_information = { | ||
certificate_id = "" | ||
enabled = false | ||
} | ||
|
||
# --- Extra Labels to append to created resources (optional) | ||
labels = {} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.