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

refactored da-event-driven #122

Merged
merged 1 commit into from
Feb 16, 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
4 changes: 2 additions & 2 deletions data-analytics-platform-event-driven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ These are some examples of the use cases you can build on top of this architectu

## Architecture

<p align="center"><img src="architecture.png"></p>
<p align="center"><img src="assets/architecture.png"></p>

The main components that we would be setting up are (to learn more about these products, click on the hyperlinks)

Expand All @@ -45,7 +45,7 @@ Pricing Estimates - We have created a sample estimate based on some usage we see
:clock1: Estimated deployment time: 8 min

1. Click on Open in Google Cloud Shell button below.
<a href="https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleCloudPlatform/click-to-deploy-solutions&cloudshell_workspace=data-analytics-platform-event-driven&cloudshell_open_in_editor=terraform/terraform.tfvars" target="_new">
<a href="https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleCloudPlatform/click-to-deploy-solutions&cloudshell_workspace=data-analytics-platform-event-driven&cloudshell_open_in_editor=infra/terraform.tfvars" target="_new">
<img alt="Open in Cloud Shell" src="https://gstatic.com/cloudssh/images/open-btn.svg">
</a>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ steps:
- |
apt-get update; apt install zip -y
zip /workspace/function-source.zip main.py requirements.txt
dir: load_function
dir: code

- id: 'tf init'
name: 'hashicorp/terraform:1.3.9'
Expand All @@ -32,13 +32,13 @@ steps:
terraform init \
-backend-config="bucket=$PROJECT_ID-tf-state" \
-backend-config="prefix=data-analytics-platform-event-driven"
dir: terraform
dir: infra
- id: 'tf apply'
name: 'hashicorp/terraform:1.3.9'
args:
- apply
- -auto-approve
dir: terraform
dir: infra
options:
env:
- TF_VAR_project_id=$PROJECT_ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ steps:
terraform init \
-backend-config="bucket=$PROJECT_ID-tf-state" \
-backend-config="prefix=data-analytics-platform-event-driven"
dir: terraform
dir: infra
- id: 'tf apply'
name: 'hashicorp/terraform:1.3.9'
args:
- destroy
- -auto-approve
dir: terraform
dir: infra
options:
env:
- TF_VAR_project_id=$PROJECT_ID
Expand Down
Loading