Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added source acknowledgement #12

Merged
merged 3 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version 0.3.2 (2024-08-21)
--------------------------
Credit Original Author, Teghan Nightengale (#11)

Version 0.3.1 (2024-06-03)
--------------------------
Add support for shared VPC in central project (closes #9)
Add support for shared VPC in central project (#9)

Version 0.3.0 (2024-02-01)
--------------------------
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

A Terraform module which deploys the requisite micro-services for loading BigQuery on Google running on top of Compute Engine. If you want to use a custom image for this deployment you will need to ensure it is based on top of Ubuntu 20.04.

## Source acknowledgement

This module was originally sourced from a [community contribution](https://github.com/tnightengale/snowplow-terraform-google-big-query-loader-ce/tree/main?tab=readme-ov-file) by [Teghan Nightengale](https://github.com/tnightengale) in 2022 - big thanks for the help in getting this one started!
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @tnightengale I can't accept the commit without there being an actual change to commit.


## Telemetry

This module by default collects and forwards telemetry information to Snowplow to understand how our applications are being used. No identifying information about your sub-account or account fingerprints are ever forwarded to us - it is very simple information about what modules and applications are deployed and active.
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
module_name = "bigquery-loader-pubsub-ce"
module_version = "0.3.1"
module_version = "0.3.2"

app_name = "snowplow-bigquery-loader"
app_version = var.app_version
Expand Down
Loading