Skip to content
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
44 changes: 44 additions & 0 deletions _data/subprocessors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
- name: DocuSign
purpose: Customer contracts
country: USA
website: https://docusign.com

- name: GitHub
purpose: Private git repo access to customers
country: USA
website: https://github.com

- name: Google
purpose: Customer data collection
country: USA
website: https://google.com

- name: MailChimp
purpose: Email newsletters
country: USA
website: https://mailchimp.com

- name: Slack
purpose: Customer support
country: USA
website: https://slack.com

- name: Stripe
purpose: Customer payment information
country: USA
website: https://stripe.com

- name: Teachable
purpose: Video training
country: USA
website: https://teachable.com

- name: Zapier
purpose: Internal automation
country: USA
website: https://zapier.com

- name: ZenDesk
purpose: Customer support
country: USA
website: https://zendesk.com
4 changes: 1 addition & 3 deletions assets/css/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
@import "guides";

// Import page-specific styles
@import "pages/cookie-policy";
@import "pages/page-data-processing-agreement.less";
@import "pages/privacy-policy";
@import "pages/legal";
@import "pages/support";
@import "pages/library";
@import "pages/pricing";
Expand Down
5 changes: 0 additions & 5 deletions assets/css/pages/cookie-policy.less

This file was deleted.

7 changes: 7 additions & 0 deletions assets/css/pages/legal.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.page-privacy-policy,
.page-cookie-policy,
.page-subprocessors {
.container > .row + .row {
padding-top: 28px;
}
}
5 changes: 0 additions & 5 deletions assets/css/pages/privacy-policy.less

This file was deleted.

32 changes: 32 additions & 0 deletions pages/subprocessors/_subprocessors-table.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<div class="table-responsive">
<div>
<table class="table table-striped" style="min-width: 700px">
<thead>
<tr>
<th>Third-Party Service</th>
<th>Purpose</th>
<th>Entity Country</th>
<th>Website</th>
</tr>
</thead>
<tbody>
{% for subprocessor in site.data.subprocessors %}
<tr id="{{ id }}">
<th>
{{ subprocessor.name }}
</th>
<td>
{{ subprocessor.purpose }}
</td>
<td>
{{ subprocessor.country }}
</td>
<td>
<a href="{{ subprocessor .website }}" target="_blank">{{ subprocessor .website }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
54 changes: 54 additions & 0 deletions pages/subprocessors/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
layout: default
title: Subprocessors
modified_date: April 20, 2020
permalink: /legal/subprocessors/
redirect_from: /subprocessors/
slug: subprocessors
---

<div class="main page-subprocessors">
<div class="section">
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>{{ page.title }}</h1>
<p><em>Last Updated: {{ page.modified_date }}</em></p>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>
Gruntwork uses some data subprocessors to support the delivery of
our service.
</p>

<h2>What is a Subprocessor?</h2>
<p>
A subprocessor is a data processor, engaged by Gruntwork, that
stores or transmits some of the customer information we collect and
is necessary to support the delivery of the Gruntwork service.
</p>

<h2>Subscribe to Updates to the Subprocessor List</h2>
<p>
Gruntwork will make updates to the subprocessor list via this
website. To subscribe to updates to the subprocessor list, copy the
following link into your preferred RSS reader:
<a href="/legal.rss">https://gruntwork.io/legal.rss</a>.
</p>

<h2>Customer Data Subprocessors</h2>
<p>
Gruntwork needs a limited amount of data to provide the Gruntwork
service to customers and therefore relies on a small number of data
subprocessors. The following is a list of subprocessors involved in
the transmission and/or storage of customer data:
</p>

{% include_relative _subprocessors-table.html %}
</div>
</div>
</div>
</div>
</div>